library(lubridate)
## 
## Attaching package: 'lubridate'
## The following objects are masked from 'package:base':
## 
##     date, intersect, setdiff, union
library(taRifx)
library(ggplot2)
library(purrr)
## 
## Attaching package: 'purrr'
## The following object is masked from 'package:taRifx':
## 
##     rep_along
library(coda)
library(rjags)
## Linked to JAGS 4.3.1
## Loaded modules: basemod,bugs

Data set building

Importing the data for men and women, they are stored in 2 data frames df_results and df_loop. df_results contains the informations of the outcome of each race while df_loop contains all the data of the penultimate loop, that is the loop that brings each biathlete in the last shooting range. An ID to identify each race, the location and the year of the data are also added to each data frame.

# Path of the directory for each year for men
years_men_path <- list.dirs(path = '../biathlon_analysis/biathlon_data/men',
                            recursive=FALSE,full.names=TRUE)

# Path of the directory for each year for women
years_women_path <- list.dirs(path='../biathlon_analysis/biathlon_data/women',
                              recursive=FALSE,full.names=TRUE)

# List of years directory names for men
years_men <- list.dirs(path = '../biathlon_analysis/biathlon_data/men', 
                       recursive = FALSE, full.names=FALSE)

# List of years directory names for women
years_women <- list.dirs(path = '../biathlon_analysis/biathlon_data/women', 
                         recursive =FALSE,full.names=FALSE)

# Initializing the list of years present in the data set
years <- c(1:length(years_men))

# Filling the list of years present in the data set
for (i in c(1:length(years_men))){
  
  idx <- unlist(gregexpr('_', years_men[[i]]))
  string <- unlist(strsplit((years_men[[i]]),""))
  final_year <- paste(string[1:idx-1], collapse="")
  years[i] <- final_year
}
# Initializing the named list of word cup locations
locations <- list()

# Filling the list having as names the year and as values the locations of the word cup venues
for (i in seq_along(years)){

locations[[years[i]]] <- (list.dirs(path = years_men_path[i], recursive = FALSE, full.names = FALSE))
}
# Initializing a list that has to be similar to the previous one but with the full path as values
locations_path_men <- list()

# Same thing for women
locations_path_women <- list()

# Filling the list
for (i in seq_along(years)){

  locations_path_men[[years[i]]] <- (list.dirs(path = years_men_path[i], recursive = FALSE, full.names = TRUE))
}


for (i in seq_along(years)){

  locations_path_women[[years[i]]] <- (list.dirs(path = years_women_path[i], recursive = FALSE, full.names = TRUE))
}
# Defining a custom infix operator to take the role of the not %in% operator
'%!in%' <- function(a,b) {!( '%in%'(a,b))}
# Initializing the final data frame of the result of each race
df_results_men <- data.frame()

# Initializing the id of the race
race_id <- 0

# Initializing the count of all the DNS
res_dns_men <- 0

# Initializing the count of all the DSQ
res_dsq_men <- 0

# Initializing the count of all the DNF
res_dnf_men <- 0

# Initializing the count of all the lapped athletes
res_lap_men <- 0

# Initializing the count of all the bibs > 120 because they won't appear in loops, 
# this happens only in Kontiolahti 2014, these damned Finnish...
res_over_men <- 0

# The allowable values for the Rank column of the data frame
allowables <- c(c(1:127), 'DNF', 'DNS', 'DSQ', 'LAP')

# Initializing the list connecting each race to the race_id
list_id_men <- list()


for (i in seq_along(years)){
  for(j in seq_along(locations[[years[i]]])){
    files <- list.files(locations_path_men[[years[i]]],
                  pattern=sprintf('results.%s',locations[[years[i]]][j]),full.names = TRUE )
    # Importing the data frame
    for (file in files){
      
     
      race_id <- race_id + 1
      
      
      df_res <- read.csv(file = file, sep = '\t')
      
      # Raising a flag if the Rank column has not allowable columns
      if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
      
      # Updating the count of bibs > 120
      res_over_men <- res_over_men + length(df_res$Rank[destring(df_res$Rank) > 120]
             [! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
      
      # Updating the DNS count
      res_dns_men <- res_dns_men + length(df_res$Rank[df_res$Rank=='DNS'])
      
      # Updating the DNF count
      res_dnf_men <- res_dnf_men + length(df_res$Rank[df_res$Rank=='DNF'])
      
      # Updating the DSQ count
      res_dsq_men <- res_dsq_men + length(df_res$Rank[df_res$Rank=='DSQ'])
      
      # Updating the lapped athletes' count
      res_lap_men <- res_lap_men + length(df_res$Rank[df_res$Rank=='LAP'])
     
      
      # Checking for possible inconsistencies in the data set
      if('Rank' %!in% colnames(df_res)){
        cat(paste('There is a mistake in', file))
      }
      # Adding the isolated.pursuit column to the non-pursuit races in order to have the same
      # columns to perform the rbind operation
      else if('Isolated.Pursuit' %!in% colnames(df_res)){
        df_res$Isolated.Pursuit <- rep(NA, nrow(df_res))
      }

      # Adding the column specifying the year of the race
      df_res$year <- rep(years[i], nrow(df_res))
      # Adding the column specifying the venue of the race
      df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
      # Adding the column with the id of the race
      df_res$ID <- rep(race_id, nrow(df_res))
      
      # Adding the column specifying the type of the race
      if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Pursuit', nrow(df_res))
      }
      else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Individual', nrow(df_res))
      }
      else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Mass start', nrow(df_res))
      }
      else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Sprint', nrow(df_res))
      }
      else{
        cat(paste('There is a mistake in',file,
                  'no race type specified'))
      }
      
      # Filling the list connecting the id to the race, the unique identifier for a race has
      # been chosen as a touple, we need also the name of the runner-up because Samuelsson won back
      # to back spring in Oestersund in 2021... Sebastian, I know you are training with Luki right now 
      #but you also # could have avoided being so awesome
      list_id_men[[paste(df_res$race_type[1], years[i], locations[[years[i]]][j], 
                         df_res$Given.Name[1], df_res$Given.Name[2])]] <- race_id
      
      # Updating the final data frame
      df_results_men <- rbind(df_results_men, df_res)
    }
  }
}
# Initializing the final data frame of the result of each race
df_results_women <- data.frame()

# Initializing the id of the race
race_id <- 0

# Initializing the count of all the DNS
res_dns_women <- 0

# Initializing the count of all the DSQ
res_dsq_women <- 0

# Initializing the count of all the DNF
res_dnf_women <- 0

# Initializing the count of all the lapped athletes
res_lap_women <- 0

# Initializing the count of all the bibs > 120 because they won't appear in loops, 
# this happens only in Kontiolahti 2014, these damned Finnish...
res_over_women <- 0

# The allowable values for the Rank column of the data frame
allowables <- c(c(1:127), 'DNF', 'DNS', 'DSQ', 'LAP')

# Defining the list connectiong races to their id
list_id_women <- list()

for (i in seq_along(years)){
  for(j in seq_along(locations[[years[i]]])){
    files <- list.files(locations_path_women[[years[i]]],
                  pattern=sprintf('results.%s',locations[[years[i]]][j]),full.names = TRUE )
    # Importing the data frame
    for (file in files){
      
      # Updating the race_id that will act as our primary key of the data set
      race_id <- race_id + 1
      
      list_id_women[[file]] <- race_id
      
      df_res <- read.csv(file = file, sep = '\t')
      
      # Raising a flag if the Rank column has not allowable columns
      if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
      
      # Updating the count of bibs > 120
      res_over_women <- res_over_women + length(df_res$Rank[destring(df_res$Rank) > 120]
             [! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
      
      # Updating the DNS count
      res_dns_women <- res_dns_women + length(df_res$Rank[df_res$Rank=='DNS'])
      
      # Updating the DNF count
      res_dnf_women <- res_dnf_women + length(df_res$Rank[df_res$Rank=='DNF'])
      
      # Updating the DSQ count
      res_dsq_women <- res_dsq_women + length(df_res$Rank[df_res$Rank=='DSQ'])
      
      # Updating the lapped athletes' count
      res_lap_women <- res_lap_women + length(df_res$Rank[df_res$Rank=='LAP'])
     
      
      # Checking for possible inconsistencies in the data set
      if('Rank' %!in% colnames(df_res)){
        cat(paste('There is a mistake in', file))
      }
      # Adding the isolated.pursuit column to the non-pursuit races in order to have the same
      # columns to perform the rbind operation
      else if('Isolated.Pursuit' %!in% colnames(df_res)){
        df_res$Isolated.Pursuit <- rep(NA, nrow(df_res))
      }

      # Adding the column specifying the year of the race
      df_res$year <- rep(years[i], nrow(df_res))
      # Adding the column specifying the venue of the race
      df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
      # Adding the column with the id of the race
      df_res$ID <- rep(race_id, nrow(df_res))
      
      # Adding the column specifying the type of the race
      if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Pursuit', nrow(df_res))
      }
      else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Individual', nrow(df_res))
      }
      else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Mass start', nrow(df_res))
      }
      else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Sprint', nrow(df_res))
      }
      else{
        cat(paste('There is a mistake in',file,
                  'no race type specified'))
      }
      
      # Filling the list as we did for the men, popping out the disqualified is due to the 
      # Glaryzina affair
      list_id_women[[paste(df_res$race_type[1], years[i], locations[[years[i]]][j], 
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][1], 
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][2])]] <- race_id
      
      # Updating the final data frame
      df_results_women <- rbind(df_results_women, df_res)
    }
  }
}
head(df_results_women)
##   Rank Bib  Family.Name Given.Name Nation Total Shootings Total.Time  Behind
## 1    1   1   Domracheva      Darya    BLR     1   1+0+0+0    30:58.5        
## 2    2  11   Virolainen      Daria    RUS     1   0+0+0+1    32:19.5 +1:21.0
## 3    3   2   Makarainen      Kaisa    FIN     5   2+0+1+2    32:27.5 +1:29.0
## 4    4   6   Hildebrand  Franziska    GER     1   0+0+1+0    32:27.8 +1:29.3
## 5    5  19 Dorin Habert      Marie    FRA     2   0+1+1+0    32:36.5 +1:38.0
## 6    6   8      Dunklee      Susan    USA     1   0+1+0+0    32:39.3 +1:40.8
##   Isolated.Pursuit      year   location ID race_type
## 1          30:58.5 2014-2015 Anterselva  1   Pursuit
## 2          31:05.5 2014-2015 Anterselva  1   Pursuit
## 3          32:00.5 2014-2015 Anterselva  1   Pursuit
## 4          31:26.8 2014-2015 Anterselva  1   Pursuit
## 5          31:10.5 2014-2015 Anterselva  1   Pursuit
## 6          31:29.3 2014-2015 Anterselva  1   Pursuit
head(df_results_men)
##   Rank Bib Family.Name Given.Name Nation Total Shootings Total.Time Behind
## 1    1   1     Schempp      Simon    GER     2   1+1+0+0    31:27.9       
## 2    2   8        Eder      Simon    AUT     1   0+1+0+0    31:28.0   +0.1
## 3    3   2  Garanichev    Evgeniy    RUS     1   0+0+1+0    31:29.0   +1.1
## 4    4   9 Bjoerndalen  Ole Einar    NOR     0   0+0+0+0    31:29.8   +1.9
## 5    5  25    Fourcade     Martin    FRA     0   0+0+0+0    31:59.8  +31.9
## 6    6  19      Lesser       Erik    GER     0   0+0+0+0    32:13.5  +45.6
##   Isolated.Pursuit      year   location ID race_type
## 1          31:27.9 2014-2015 Anterselva  1   Pursuit
## 2          30:52.0 2014-2015 Anterselva  1   Pursuit
## 3          31:15.0 2014-2015 Anterselva  1   Pursuit
## 4          30:46.8 2014-2015 Anterselva  1   Pursuit
## 5          30:39.8 2014-2015 Anterselva  1   Pursuit
## 6          31:05.5 2014-2015 Anterselva  1   Pursuit
# Initializing the race_id for the second to last loop data frame
race_id <- 0
# The set of allowable values for the Rank column of the loop data frame
allowables <- c(1:127)
# Initializing the final loop data frame
df_final_loop_men <- data.frame()

# Beginning the cycle that loops over every year and every venue
for (i in seq_along(years)){
  
  for(j in seq_along(locations[[years[i]]])){
    
    
    # All the files that represent a loop in our directory
    files <- list.files(locations_path_men[[years[i]]],
                  pattern=sprintf('loop...%s',locations[[years[i]]][j]),full.names = TRUE )
    
      # Looping over all the files
      for (file in files){
        # Here we select, between all loop files the ones that represent the second to last loop,
        # that is, the loop in which the biathlete arrive at the last shooting range
        if (
            (grepl(pattern = 'pursuit', x =file, fixed=TRUE)  
            &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'sprint', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_2', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'individual', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'mass_start', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            
            ){
            # Updating the race id
            
            
            # Reading the file into a data frame
            df_loop <- read.csv2(file = file, sep = '\t')
            
            # Here we raise a flag if we don't have the Rank colun in the created data frame
            if('Rank' %!in% colnames(df_loop)){
                cat(paste('There is a mistake in', file, '\n'))
            
            # Here we raise a flag and print the relative fail if we have a Rank value that is not allowed
            if(length(df_loop$Rank[df_loop$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
            
            
            } 
            
            # The column Ski.Time is present only on individual races, for tha others we fill it with 0
            # in order to make the rbind possible
            if ('Ski.Time'%!in% colnames(df_loop)){
              df_loop[['Ski.Time']] <- rep(0, nrow(df_loop))
            }
            
            # The Canmore's short individual did not have the Range.Time column, so we create it for the 
            # rbind... but who cares about short individuals anyway!!!
            if ('Range.Time'%!in% colnames(df_loop)){
              df_loop[['Range.Time']] <- rep(0, nrow(df_loop))
            }
            
            # The columns of the data frame
            columns_df <- colnames(df_loop)
            
            # The index from which column regarding times start
            idx_time_columns <- which(columns_df=='Nation')
            
            # The 'time' columns of the table, the -1 at the end is to delete 'Nation'
            # that is not between them
            time_columns <- columns_df[idx_time_columns:length(columns_df)][-1]
            
            # Adding the column specifying the year of the race
            df_loop$year <- rep(years[i], nrow(df_loop))
            
            # Adding the column specifying the venue of the race
            df_loop$location <- rep(locations[[years[i]]][j], nrow(df_loop))
            
           
            
            # Adding the column specifying the type of the race
            if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Pursuit', nrow(df_loop))
            }
            else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Individual', nrow(df_loop))
            }
            else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Mass start', nrow(df_loop))
            }
            else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Sprint', nrow(df_loop))
            }
            else{
              cat(paste('There is a mistake in',file,
                        'no race type specified'))
            }
            
            # Assigning to the race the same id that it has on the results data frame
            df_loop$ID <-rep( list_id_men[[paste(df_loop$race_type[1], years[i], locations[[years[i]]][j], 
                         df_loop$Given.Name[1],  df_loop$Given.Name[2])]], nrow(df_loop))
            
            # Initializing the list of the reference times among all the columns, we have in fact that 
            # time columns are note stored as absolute times: we have a reference time and then the other records
            # reference to it as +'time_interval'
            reference_times <- list()
            
            # Looping over all the time columns
            for(column in time_columns){
              
              # In individual races penalty times, as we know, are a thing of their own and the data set
              # itself seem to have noticed! It does not have in fact a value for biathletes that found the
              # 0 in a certain shooting range. We deal with it by giving by default the value 0.
              # We know what you are thinking: What if every one missed at least once?
              # Come on have a little trust in your sport heroes! as soon as Sturla Holm Lægreid will be around
              # we are more them safe!
              if (column == 'Penalty.Time'
                  &&
                  grepl(pattern = 'individual', x = file, fixed=TRUE)
                  )
              {reference_time <- duration(second = 0)}
              
              # In the else statement instead we select as the reference time the record with no '+' in 
              # its body, the [1] is there to arbitrary break the ties between equally good reference times
              else{
                reference_time <- df_loop[[column]][!grepl(pattern = '+', x =df_loop[[column]],
                            fixed=TRUE)]
                }
              reference_time <- reference_time[1]
              
              # In this if cycle we convert the reference time from a string to a time duration
              # thanks to the lubridate package and its duration function
              
              # The first case is for whe we have minutes and not only second where we have a column 
              # as a separator
              if (grepl(pattern = ':', x  = reference_time,
                            fixed=TRUE)){
                
                # Changing the reference time into an iterable
                string_sep <- unlist(strsplit((reference_time),""))
                
                # Getting the index of the column
                idx_sep <- unlist(gregexpr(':', reference_time, fixed = TRUE))
                
                # This step raises a flag if having a double colon signaling hours, 
                # comes out: biathletes are no snails!
                if (length(idx_sep) > 1){cat(paste('Do we have hours now?? in', file  ))}
                
                # The minute part of the reference time
                min <- as.numeric(paste(string_sep[1:idx_sep-1], collapse=""))
                
                # The second part of the reference time
                sec <- as.numeric(paste(string_sep[-c(1:idx_sep)], collapse=""))
                reference_time_ <- duration(minute= min, second=sec)
                
              }
              # This second case is for reference times that don't reach a minute
              else{
                sec <- as.numeric(reference_time)
                reference_time_ <- duration(second=sec)
              }
              
              # Updating the list
              reference_times[[column]] <- reference_time_
              
              # Index of the reference times
              reference_time_idx <- which(!grepl(pattern = '+', x =df_loop[[column]],
                            fixed=TRUE))
              
              # Renaming the times of the current columns
              times_to_add <- df_loop[[column]]
              
              # Initializing the column of the absolute times
              final_adding <- c()
              
              # Filling the final_adding vector
              for (k in seq_along(times_to_add)){
                
                # Putting in the reference times
                if (k %in% reference_time_idx){
                  final_adding[k] <- reference_times[[column]]
                }
                
                # Putting in the 'minutes' recorda
                else if (grepl(pattern = ':', x =times_to_add[k], fixed=TRUE)){
                  string_add <- unlist(strsplit((times_to_add[k]),""))
                  idx_add <- unlist(gregexpr(':', times_to_add[k]))
                  
                  # Flag raise for 'hour' times
                  if (length(idx_add) > 1){print('Do we have hours now?? in', file)} 
                  
                  min_add <- as.numeric(paste(string_add[1:idx_add-1], collapse=""))
                  sec_add <- as.numeric(paste(string_add[-c(1:idx_add)], collapse=""))
                  
                  adding_time <- duration(minute= min_add, second=sec_add)
                  
                  # Here the [1] is present for arbitrarily breaking ties for equally good
                  # reference times
                  final_adding[k] <- adding_time + reference_times[[column]][1]
                }
                else{
                  
                  # The original data frame contained a couple of 'broken' records, being only
                  # the string '+', we changed the values to a known fixed outlier ('+1000') and here
                  # we transform it into NA
                  if (times_to_add[k]=='+1000') {final_adding[k] <- NA}
                  
                  # Non pathological case were we have a 'seconds' time
                  else{
                    final_adding[k] <- duration(second = as.numeric(times_to_add[k])) + 
                      reference_times[[column]]
                  }
                }
                 
              }
              
              # Updating the column of the data frame
              df_loop[[column]] <- final_adding
             
              
            }
            
          # Binding together the data frames  
          df_final_loop_men <- rbind(df_final_loop_men, df_loop)
        
      }
    }
  }
}
df_final_loop_men
##      Rank Bib    Family.Name        Given.Name Nation Cumulative.Time Loop.Time
## 1       1  29        Schempp             Simon    GER           957.9     476.0
## 2       2  42     Garanichev           Evgeniy    RUS           967.8     483.9
## 3       3  48            Fak             Jakov    SLO           975.8     500.5
## 4       4  49          Weger          Benjamin    SUI           986.8     483.2
## 5       5  53          Green           Brendan    CAN           981.3     489.7
## 6       6  85    L'Abee-Lund            Henrik    NOR           985.4     491.3
## 7       7  27       Shipulin             Anton    RUS           985.5     502.1
## 8       8  46           Eder             Simon    AUT           979.6     488.9
## 9       9   9    Bjoerndalen         Ole Einar    NOR           991.3     504.9
## 10     10  15        Moravec            Ondrej    CZE           994.0     496.9
## 11     11  68        Peiffer              Arnd    GER          1004.3     517.2
## 12     12  57       Eberhard            Julian    AUT          1011.9     483.5
## 13     13  17     Pidruchnyi            Dmytro    UKR           998.9     511.5
## 14     14   6          Iliev          Vladimir    BUL          1010.0     519.4
## 15     15   4       Malyshko            Dmitry    RUS          1000.6     499.9
## 16     16  28        Lapshin           Timofei    RUS           998.2     514.8
## 17     17  40        Beatrix    Jean Guillaume    FRA          1008.6     511.6
## 18     18  34       Fourcade             Simon    FRA          1005.6     501.1
## 19     19  45         Lesser              Erik    GER          1017.6     532.0
## 20     20  32     Lindstroem           Fredrik    SWE          1019.1     500.8
## 21     21  50   Rastorgujevs           Andrejs    LAT          1022.2     495.7
## 22     22  38          Pryma             Artem    UKR          1021.9     525.6
## 23     23   1         Krcmar            Michal    CZE          1020.5     517.3
## 24     24  66             Os         Alexander    NOR          1017.5     497.5
## 25     25  10       Fourcade            Martin    FRA          1014.2     508.0
## 26     26  88           Doll          Benedikt    GER          1028.8     518.4
## 27     27  76         Dolder             Mario    SUI          1013.6     505.2
## 28     28   3       Svendsen        Emil Hegle    NOR          1035.9     520.0
## 29     29  19 Fillon Maillet           Quentin    FRA          1033.3     488.0
## 30     30  14          Boehm            Daniel    GER          1020.6     529.0
## 31     31   5            Boe Johannes Thingnes    NOR          1040.0     515.7
## 32     32  37         Bailey            Lowell    USA          1025.7     527.4
## 33     33  41       Chepelin          Vladimir    BLR          1029.8     540.3
## 34     34  16          Hofer             Lukas    ITA          1031.8     528.5
## 35     34  44          Kazar             Matej    SVK          1049.7     506.3
## 36     36  11     Birnbacher           Andreas    GER          1035.2     497.9
## 37     37  47         Komatz             David    AUT          1026.6     528.5
## 38     38  25       Windisch           Dominik    ITA          1046.3     518.2
## 39     39  92        Hasilla             Tomas    SVK          1032.2     527.7
## 40     40  63         Soukup          Jaroslav    CZE          1051.0     525.6
## 41     41  13       Puchianu            Cornel    ROU          1055.0     557.1
## 42     42 102        Zhyrnyi         Oleksandr    UKR          1028.4     525.3
## 43     43  99     De Lorenzi         Christian    ITA          1039.1     536.6
## 44     44  23     Mesotitsch            Daniel    AUT          1049.0     531.6
## 45     45  36            Boe            Tarjei    NOR          1047.5     546.7
## 46     46  94          Jouty          Baptiste    FRA          1046.5     536.5
## 47     47  67          Burke               Tim    USA          1059.2     543.8
## 48     48  22      Savitskiy               Yan    KAZ          1044.3     516.7
## 49     49  18       Slesingr            Michal    CZE          1052.4     535.5
## 50     50  39         Roesch           Michael    BEL          1047.5     559.8
## 51     51 103            Gow         Christian    CAN          1041.3     523.1
## 52     52  52          Trsan               Rok    SLO          1052.2     527.0
## 53     53  33     Grossegger              Sven    AUT          1040.4     540.0
## 54     54   7         Liadov             Yuryi    BLR          1067.1     559.0
## 55     55  35           Anev          Krasimir    BUL          1060.3     511.9
## 56     56  96         Pinter         Friedrich    AUT          1057.1     549.0
## 57     57  74       Kaukenas             Tomas    LTU          1054.7     538.7
## 58     58  75      Desthieux             Simon    FRA          1065.0     560.2
## 59     59  59         Pantov             Anton    KAZ          1063.7     504.0
## 60     60  82          Oblak            Lenart    SLO          1048.7     533.4
## 61     61  30       Toivanen              Ahti    FIN          1083.3     542.9
## 62     62  83        Doherty              Sean    USA          1075.1     553.8
## 63     63  31        Krupcik             Tomas    CZE          1064.0     548.8
## 64     64  69       Tsvetkov             Maxim    RUS          1067.0     576.6
## 65     65  81       Matiasko          Miroslav    SVK          1068.5     557.8
## 66     66  72     Tyshchenko             Artem    UKR          1055.2     559.7
## 67     67  70           Faur             Remus    ROU          1055.1     528.6
## 68     68  54           Dokl             Peter    SLO          1052.9     532.1
## 69     69  60      Bormolini            Thomas    ITA          1060.1     563.3
## 70     70  51      Tobreluts            Indrek    EST          1088.6     564.2
## 71     71   8        Semenov            Sergii    UKR          1106.8     518.9
## 72     72  56     Hiidensalo              Olli    FIN          1084.5     531.3
## 73     73  20            Gow             Scott    CAN          1093.3     541.2
## 74     74  24        Lessing            Roland    EST          1077.9     526.8
## 75     75  73         Zlatev              Ivan    BUL          1058.5     546.8
## 76     76  86         Zahkna              Rene    EST          1070.0     523.3
## 77     77  43          Smith            Nathan    CAN          1074.9     549.1
## 78     78 101        Abasheu           Dzmitry    BLR          1073.2     564.3
## 79     79  21       Nordgren              Leif    USA          1088.4     547.9
## 80     80  87      Kauppinen            Jarkko    FIN          1071.5     540.0
## 81     81 100       Stegmayr           Gabriel    SWE          1077.0     537.5
## 82     82   2        Otcenas            Martin    SVK          1105.6     567.7
## 83     83  62          Guzik          Grzegorz    POL          1084.7     526.2
## 84     84  77          Sloof              Joel    NED          1069.2     558.1
## 85     85  61       Almoukov            Alexei    AUS          1063.6     546.9
## 86     86  71        Armgren               Ted    SWE          1100.2     556.5
## 87     87  78        Dyuzhev           Dmitriy    BLR          1108.7     560.2
## 88     88  65   Lobo Escolar            Victor    ESP          1095.0     554.0
## 89     89  89     Dombrovski             Karol    LTU          1090.8     554.1
## 90     90  58        Puzulis           Rolands    LAT          1098.5     542.3
## 91     91  12       Wiestner           Serafin    SUI          1142.1     580.8
## 92     92  95       Trifonov          Alexandr    KAZ          1101.4     554.0
## 93     93  80      Stenersen          Torstein    SWE          1130.5     576.4
## 94     94  79           Kane             Kevin    GBR          1110.8     556.0
## 95     95  97         Cuenot           Gaspard    SUI          1115.0     565.0
## 96     96  55         Rastic             Damir    SRB          1139.1     583.7
## 97     97  90       Szczurek            Lukasz    POL          1180.2     545.4
## 98     98  91        Slotins           Roberts    LAT          1168.1     637.9
## 99     99  64        Inomata            Kazuya    JPN          1162.1     592.2
## 100   100  98       Laponder            Marcel    GBR          1188.8     603.6
## 101   101  93     Krsmanovic             Dejan    SRB          1236.9     642.0
## 102     1   1        Schempp             Simon    GER          1555.9     379.1
## 103     2   8           Eder             Simon    AUT          1554.5     380.8
## 104     3   2     Garanichev           Evgeniy    RUS          1553.9     382.4
## 105     4   9    Bjoerndalen         Ole Einar    NOR          1555.5     380.4
## 106     5  25       Fourcade            Martin    FRA          1579.0     378.8
## 107     6  19         Lesser              Erik    GER          1584.3     383.3
## 108     7   3            Fak             Jakov    SLO          1599.0     397.6
## 109     8  18       Fourcade             Simon    FRA          1600.5     380.4
## 110     9  13     Pidruchnyi            Dmytro    UKR          1615.6     377.9
## 111    10  11        Peiffer              Arnd    GER          1608.5     391.3
## 112    11  10        Moravec            Ondrej    CZE          1615.1     382.4
## 113    12  30          Boehm            Daniel    GER          1603.4     379.4
## 114    13   7       Shipulin             Anton    RUS          1622.9     397.8
## 115    14  16        Lapshin           Timofei    RUS          1612.7     393.5
## 116    15  12       Eberhard            Julian    AUT          1622.6     401.6
## 117    16  17        Beatrix    Jean Guillaume    FRA          1639.0     418.5
## 118    17  28       Svendsen        Emil Hegle    NOR          1641.2     409.0
## 119    18   5          Green           Brendan    CAN          1656.6     386.9
## 120    19  37     Birnbacher           Andreas    GER          1655.1     387.8
## 121    20  20     Lindstroem           Fredrik    SWE          1658.2     426.9
## 122    21  29 Fillon Maillet           Quentin    FRA          1667.1     408.5
## 123    22  31            Boe Johannes Thingnes    NOR          1687.6     447.5
## 124    23  26           Doll          Benedikt    GER          1702.8     429.6
## 125    24  23         Krcmar            Michal    CZE          1699.7     412.2
## 126    25  46            Boe            Tarjei    NOR          1697.9     412.7
## 127    26  22          Pryma             Artem    UKR          1695.6     405.8
## 128    27  54     Grossegger              Sven    AUT          1697.0     398.0
## 129    28   4          Weger          Benjamin    SUI          1696.0     438.2
## 130    29  45     Mesotitsch            Daniel    AUT          1704.1     404.6
## 131    30  34          Hofer             Lukas    ITA          1717.3     426.0
## 132    31  32         Bailey            Lowell    USA          1717.7     428.8
## 133    32  14          Iliev          Vladimir    BUL          1720.5     449.3
## 134    33  44     De Lorenzi         Christian    ITA          1710.3     418.3
## 135    34  24             Os         Alexander    NOR          1723.5     439.5
## 136    35  21   Rastorgujevs           Andrejs    LAT          1731.4     414.7
## 137    36  39       Windisch           Dominik    ITA          1736.5     445.0
## 138    37  38         Komatz             David    AUT          1736.1     395.5
## 139    38  33       Chepelin          Vladimir    BLR          1734.4     463.5
## 140    39  51         Roesch           Michael    BEL          1755.2     446.3
## 141    40  48          Burke               Tim    USA          1761.5     405.9
## 142    41  41         Soukup          Jaroslav    CZE          1765.4     419.7
## 143    42  43        Zhyrnyi         Oleksandr    UKR          1771.0     400.6
## 144    43  15       Malyshko            Dmitry    RUS          1768.3     405.4
## 145    44  49      Savitskiy               Yan    KAZ          1765.1     430.5
## 146    45  27         Dolder             Mario    SUI          1791.0     477.5
## 147    46  52            Gow         Christian    CAN          1778.7     430.2
## 148    47  58       Kaukenas             Tomas    LTU          1807.4     444.2
## 149    48  42       Puchianu            Cornel    ROU          1801.0     454.2
## 150    49  40        Hasilla             Tomas    SVK          1816.2     447.6
## 151    50  35          Kazar             Matej    SVK          1824.3     490.5
## 152    51  57         Pinter         Friedrich    AUT          1833.4     469.4
## 153    52  47          Jouty          Baptiste    FRA          1863.3     460.9
## 154    53  60         Pantov             Anton    KAZ          1890.0     424.3
## 155     1  13            Boe Johannes Thingnes    NOR          1134.7     777.8
## 156     2  19        Schempp             Simon    GER          1149.9     778.8
## 157     3  16     Birnbacher           Andreas    GER          1149.0     775.9
## 158     4  27   Landertinger           Dominik    AUT          1156.1     791.8
## 159     5  25            Fak             Jakov    SLO          1157.4     771.3
## 160     6   6            Boe            Tarjei    NOR          1161.7     792.3
## 161     7  83       Fourcade            Martin    FRA          1150.7     787.4
## 162     8  30       Malyshko            Dmitry    RUS          1153.2     781.5
## 163     9   2       Svendsen        Emil Hegle    NOR          1163.3     801.2
## 164    10   5        Moravec            Ondrej    CZE          1167.9     773.8
## 165    11  33       Shipulin             Anton    RUS          1165.4     773.6
## 166    12  10          Weger          Benjamin    SUI          1161.5     799.9
## 167    13   7          Burke               Tim    USA          1168.8     802.8
## 168    14   4     Mesotitsch            Daniel    AUT          1171.6     804.5
## 169    15  52          Boehm            Daniel    GER          1173.2     804.7
## 170    16  88        Lapshin           Timofei    RUS          1170.8     812.4
## 171    17  23           Anev          Krasimir    BUL          1169.6     797.7
## 172    17  41         Bailey            Lowell    USA          1171.0     800.2
## 173    19  31          Iliev          Vladimir    BUL          1183.9     808.1
## 174    20  26          Kazar             Matej    SVK          1183.6     814.3
## 175    21  14      Savitskiy               Yan    KAZ          1169.7     791.6
## 176    22  18       Tsvetkov             Maxim    RUS          1179.4     808.7
## 177    23  28   Rastorgujevs           Andrejs    LAT          1198.9     784.7
## 178    24  12           Eder             Simon    AUT          1190.2     810.4
## 179    25  36             Os         Alexander    NOR          1205.9     789.4
## 180    26   8          Pryma             Artem    UKR          1204.4     825.7
## 181    27   9       Puchianu            Cornel    ROU          1208.7     834.8
## 182    28  39         Lesser              Erik    GER          1217.3     831.0
## 183    29 105       Fourcade             Simon    FRA          1192.6     821.8
## 184    30  21      Desthieux             Simon    FRA          1219.7     849.3
## 185    31  22        Semenov            Sergii    UKR          1212.0     800.7
## 186    32  43        Peiffer              Arnd    GER          1209.9     845.1
## 187    33  42     Garanichev           Evgeniy    RUS          1214.1     849.6
## 188    34  47         Dolder             Mario    SUI          1213.8     838.2
## 189    35  85     Pidruchnyi            Dmytro    UKR          1216.1     817.2
## 190    36  17         Soukup          Jaroslav    CZE          1226.8     829.5
## 191    37  91        Beatrix    Jean Guillaume    FRA          1225.5     856.4
## 192    38  73      Birkeland        Lars Helge    NOR          1225.7     813.1
## 193    39 101    Bjoerndalen         Ole Einar    NOR          1220.7     811.3
## 194    40  24          Bauer            Klemen    SLO          1227.1     863.4
## 195    41  82       Eberhard            Julian    AUT          1238.9     822.0
## 196    42  15       Slesingr            Michal    CZE          1229.2     851.4
## 197    43  29          Smith            Nathan    CAN          1235.7     820.5
## 198    44  35 Fillon Maillet           Quentin    FRA          1223.1     845.3
## 199    45   1         Liadov             Yuryi    BLR          1228.8     828.7
## 200    46  40     Lindstroem           Fredrik    SWE          1246.1     855.4
## 201    47  79        Otcenas            Martin    SVK          1242.5     877.5
## 202    48  74          Green           Brendan    CAN          1244.6     813.5
## 203    49  54           Koiv             Kauri    EST          1225.1     852.2
## 204    50  70       Nordgren              Leif    USA          1243.9     833.6
## 205    51  50          Sloof              Joel    NED          1229.4     845.2
## 206    52  69     Hiidensalo              Olli    FIN          1255.6     822.8
## 207    53  57       Chepelin          Vladimir    BLR          1255.6     881.2
## 208    54  65        Zhyrnyi         Oleksandr    UKR          1242.0     830.6
## 209    55  48         Krcmar            Michal    CZE          1260.6     879.4
## 210    56   3       Arwidson            Tobias    SWE          1236.1     866.0
## 211    57  53         Cuenot           Gaspard    SUI          1256.6     854.3
## 212    58  37       Windisch           Dominik    ITA          1258.3     843.4
## 213    59  96      Tobreluts            Indrek    EST          1262.3     878.3
## 214    60  97        Currier           Russell    USA          1269.0     830.7
## 215    61  94     Dombrovski             Karol    LTU          1240.2     835.8
## 216    62 102       Wiestner           Serafin    SUI          1262.1     836.5
## 217    63  67       Darozhka        Aliaksandr    BLR          1263.3     865.9
## 218    64  51       Kaukenas             Tomas    LTU          1261.6     885.6
## 219    65  20          Hofer             Lukas    ITA          1264.6     853.5
## 220    66  56      Bormolini            Thomas    ITA          1260.1     836.2
## 221    67  46       Eriksson        Christofer    SWE          1267.1     877.1
## 222    68  93     Willeitner           Michael    GER          1282.7     897.2
## 223    69 103         Rastic             Damir    SRB          1260.6     864.5
## 224    70  89    Budzilovich           Dzmitry    BLR          1267.9     874.6
## 225    71  64       Eberhard            Tobias    AUT          1274.0     859.0
## 226    72  32     Tyshchenko             Artem    UKR          1275.9     865.6
## 227    73  34        Lessing            Roland    EST          1291.7     856.1
## 228    74  86        Armgren               Ted    SWE          1283.7     858.7
## 229    75  84          Trsan               Rok    SLO          1280.4     899.0
## 230    76  58          Oblak            Lenart    SLO          1276.8     837.7
## 231    77  76           Dokl             Peter    SLO          1265.9     876.3
## 232    78  45        Krupcik             Tomas    CZE          1277.2     874.5
## 233    79  75         Hakala             Matti    FIN          1290.5     857.6
## 234    80  80         Roesch           Michael    BEL          1261.4     893.2
## 235    81  49         Bedard        Marc Andre    CAN          1283.7     850.5
## 236    82  38         Komatz             David    AUT          1288.1     875.4
## 237    83  81           Buta            George    ROU          1298.5     884.9
## 238    84  68       Almoukov            Alexei    AUS          1302.7     864.6
## 239    85  90     Martinelli         Christian    ITA          1291.4     861.8
## 240    86  59          Boeuf            Alexis    FRA          1297.8     890.5
## 241    87  44        Hasilla             Tomas    SVK          1293.9     888.4
## 242    88  77       Trifonov          Alexandr    KAZ          1293.4     876.8
## 243    89  87          Janik           Mateusz    POL          1309.1     885.6
## 244    90  78   Lobo Escolar            Victor    ESP          1302.7     908.0
## 245    91  11       Kobonoki           Tsukasa    JPN          1301.7     872.6
## 246    92 104        Gronman            Tuomas    FIN          1304.4     889.2
## 247    93  60        Sinapov             Anton    BUL          1317.1     931.7
## 248    94  62       Szczurek            Lukasz    POL          1332.7     864.6
## 249    95  61        Jackson         Lee-Steve    GBR          1325.4     852.7
## 250    96  66        Femling             Peppe    SWE          1301.4     877.4
## 251    97  98     Podkorytov          Vassiliy    KAZ          1336.0     845.7
## 252    98  99       Matiasko          Miroslav    SVK          1349.6     932.0
## 253    99  92         Perras             Scott    CAN          1365.9     902.7
## 254   100  55        Puzulis           Rolands    LAT          1332.3     929.1
## 255   101  95      Patrijuks        Aleksandrs    LAT          1373.4     934.9
## 256   102  71       Crnkovic          Kresimir    CRO          1377.5     942.1
## 257   103 100           Kane             Kevin    GBR          1403.2     987.1
## 258   104  72         Hodzic              Edin    SRB          1406.8     934.2
## 259     1   7       Fourcade            Martin    FRA          1612.2     416.0
## 260     2   2        Schempp             Simon    GER          1620.3     422.0
## 261     3   5            Fak             Jakov    SLO          1638.4     443.7
## 262     4   1            Boe Johannes Thingnes    NOR          1637.8     415.3
## 263     5  11       Shipulin             Anton    RUS          1647.5     415.2
## 264     6   6            Boe            Tarjei    NOR          1657.9     419.6
## 265     7   3     Birnbacher           Andreas    GER          1665.8     417.5
## 266     8   4   Landertinger           Dominik    AUT          1691.9     462.9
## 267     9  10        Moravec            Ondrej    CZE          1683.5     422.8
## 268    10   8       Malyshko            Dmitry    RUS          1684.8     423.0
## 269    11  19          Iliev          Vladimir    BUL          1685.9     446.5
## 270    12  15          Boehm            Daniel    GER          1686.4     423.2
## 271    13  16        Lapshin           Timofei    RUS          1691.7     443.9
## 272    14   9       Svendsen        Emil Hegle    NOR          1691.3     445.6
## 273    15  45 Fillon Maillet           Quentin    FRA          1711.1     417.8
## 274    16  25           Eder             Simon    AUT          1737.5     454.0
## 275    17  24   Rastorgujevs           Andrejs    LAT          1736.8     420.3
## 276    18  29         Lesser              Erik    GER          1746.2     423.8
## 277    19  14     Mesotitsch            Daniel    AUT          1735.4     451.1
## 278    20  12          Weger          Benjamin    SUI          1751.2     446.2
## 279    21  23       Tsvetkov             Maxim    RUS          1766.6     436.3
## 280    22  47     Lindstroem           Fredrik    SWE          1766.0     424.1
## 281    23  17           Anev          Krasimir    BUL          1732.0     453.0
## 282    24  20          Kazar             Matej    SVK          1776.0     433.7
## 283    25  13          Burke               Tim    USA          1772.8     425.8
## 284    26  30       Fourcade             Simon    FRA          1779.0     421.4
## 285    27  34     Garanichev           Evgeniy    RUS          1781.3     440.1
## 286    28  21      Savitskiy               Yan    KAZ          1751.6     435.0
## 287    29  27          Pryma             Artem    UKR          1775.7     452.1
## 288    30  39      Birkeland        Lars Helge    NOR          1789.9     444.7
## 289    31  36     Pidruchnyi            Dmytro    UKR          1782.1     457.8
## 290    32  18         Bailey            Lowell    USA          1784.9     478.1
## 291    33  26             Os         Alexander    NOR          1800.2     441.9
## 292    34  32        Semenov            Sergii    UKR          1800.8     433.7
## 293    35  41          Bauer            Klemen    SLO          1803.5     431.9
## 294    36  51       Nordgren              Leif    USA          1802.0     428.1
## 295    37  38        Beatrix    Jean Guillaume    FRA          1822.1     486.1
## 296    38  42       Eberhard            Julian    AUT          1840.9     446.1
## 297    39  31      Desthieux             Simon    FRA          1839.1     505.5
## 298    40  54       Chepelin          Vladimir    BLR          1844.5     443.0
## 299    41  59       Windisch           Dominik    ITA          1844.3     468.5
## 300    42  33        Peiffer              Arnd    GER          1853.9     454.3
## 301    43  49          Green           Brendan    CAN          1868.4     494.1
## 302    44  35         Dolder             Mario    SUI          1861.0     467.1
## 303    45  57       Arwidson            Tobias    SWE          1860.4     440.9
## 304    46  48        Otcenas            Martin    SVK          1886.9     505.6
## 305    47  56         Krcmar            Michal    CZE          1889.7     486.6
## 306    48  44          Smith            Nathan    CAN          1912.9     553.9
## 307    49  58         Cuenot           Gaspard    SUI          1921.3     504.3
## 308    50  55        Zhyrnyi         Oleksandr    UKR          1924.9     471.2
## 309    51  37         Soukup          Jaroslav    CZE          1913.6     549.9
## 310    52  46         Liadov             Yuryi    BLR          1928.3     510.7
## 311    53  28       Puchianu            Cornel    ROU          1963.8     493.9
## 312    54  53     Hiidensalo              Olli    FIN          1967.2     476.2
## 313    55  50           Koiv             Kauri    EST          2032.7     515.7
## 314    56  52          Sloof              Joel    NED          2020.4     508.0
## 315     1  38       Fourcade            Martin    FRA           988.2     495.7
## 316     2  43       Shipulin             Anton    RUS           999.6     500.0
## 317     3  27           Doll          Benedikt    GER          1013.4     517.9
## 318     4  32   Rastorgujevs           Andrejs    LAT          1011.7     502.1
## 319     5  24          Smith            Nathan    CAN          1025.1     505.4
## 320     6  52        Peiffer              Arnd    GER          1029.9     519.5
## 321     7  26     Lindstroem           Fredrik    SWE          1019.6     512.2
## 322     8  23       Fourcade             Simon    FRA          1022.2     504.8
## 323     9  30    Bjoerndalen         Ole Einar    NOR          1017.6     509.2
## 324    10   3          Kuehn          Johannes    GER          1043.2     538.0
## 325    11  31          Boehm            Daniel    GER          1031.3     530.7
## 326    12   2        Beatrix    Jean Guillaume    FRA          1021.2     513.5
## 327    13  37       Svendsen        Emil Hegle    NOR          1027.7     527.0
## 328    14  14       Tsvetkov             Maxim    RUS          1036.8     518.0
## 329    15  28       Slesingr            Michal    CZE          1042.6     524.6
## 330    16  67        Schempp             Simon    GER          1048.9     546.9
## 331    17  45         Dolder             Mario    SUI          1039.4     533.1
## 332    18  19            Fak             Jakov    SLO          1058.7     541.0
## 333    19  39          Weger          Benjamin    SUI          1051.6     548.3
## 334    20   6           Anev          Krasimir    BUL          1032.6     518.4
## 335    21  41       Nordgren              Leif    USA          1045.5     534.3
## 336    22  29       Eberhard            Julian    AUT          1066.1     561.1
## 337    23  87           Graf           Florian    GER          1048.7     530.7
## 338    24  66         Volkov            Alexey    RUS          1030.7     524.7
## 339    25  36       Chepelin          Vladimir    BLR          1058.6     530.7
## 340    26  53         Lesser              Erik    GER          1057.1     553.6
## 341    27  51           Koiv             Kauri    EST          1043.0     540.0
## 342    28   9          Kazar             Matej    SVK          1052.3     532.3
## 343    29  11         Liadov             Yuryi    BLR          1055.3     531.7
## 344    30  47          Green           Brendan    CAN          1058.0     542.2
## 345    31  88         Joller              Ivan    SUI          1051.4     522.8
## 346    32  15       Wiestner           Serafin    SUI          1069.7     541.9
## 347    33  22     Garanichev           Evgeniy    RUS          1067.5     525.5
## 348    34  20          Iliev          Vladimir    BUL          1075.5     551.6
## 349    35  65     Grossegger              Sven    AUT          1044.7     535.6
## 350    36   1        Semenov            Sergii    UKR          1071.8     513.5
## 351    37  35          Bauer            Klemen    SLO          1076.3     525.4
## 352    38  42        Moravec            Ondrej    CZE          1073.4     508.2
## 353    39   4   Bjoentegaard            Erlend    NOR          1069.0     536.5
## 354    40  33       Malyshko            Dmitry    RUS          1067.9     515.4
## 355    41  55        Zhyrnyi         Oleksandr    UKR          1067.3     561.6
## 356    42  48        Femling             Peppe    SWE          1069.2     540.5
## 357    43  34         Roesch           Michael    BEL          1073.8     563.2
## 358    44  69         Slepov            Alexey    RUS          1096.5     527.9
## 359    44  75        Abasheu           Dzmitry    BLR          1068.2     548.6
## 360    46  63 Fillon Maillet           Quentin    FRA          1079.4     511.8
## 361    47  74  Gjermundshaug            Vegard    NOR          1068.8     533.8
## 362    48  81           Eder             Simon    AUT          1073.1     532.7
## 363    49  46     Hiidensalo              Olli    FIN          1088.7     556.1
## 364    50  12            Boe            Tarjei    NOR          1082.4     560.5
## 365    51  82         Bailey            Lowell    USA          1072.2     561.0
## 366    52  21          Pryma             Artem    UKR          1088.6     546.3
## 367    53  80     Mesotitsch            Daniel    AUT          1061.9     554.1
## 368    54  49       Windisch           Dominik    ITA          1081.0     568.2
## 369    55  56          Burke               Tim    USA          1096.7     574.7
## 370    56  16         Krcmar            Michal    CZE          1083.9     567.0
## 371    57  17          Hofer             Lukas    ITA          1109.3     555.9
## 372    57  70    L'Abee-Lund            Henrik    NOR          1078.2     568.6
## 373    59  62      Birkeland        Lars Helge    NOR          1073.4     531.8
## 374    60   5        Lapshin           Timofei    RUS          1089.7     526.8
## 375    61   7         Komatz             David    AUT          1085.4     548.9
## 376    62  25        Otcenas            Martin    SVK          1096.6     567.7
## 377    63  59       Matiasko          Miroslav    SVK          1082.0     552.2
## 378    64  71           Buta            George    ROU          1094.1     528.2
## 379    65  40      Savitskiy               Yan    KAZ          1087.0     548.4
## 380    66  89     Tyshchenko             Artem    UKR          1086.8     549.2
## 381    67  86     Dombrovski             Karol    LTU          1083.1     563.0
## 382    68  18            Boe Johannes Thingnes    NOR          1099.3     574.5
## 383    69  54        Dyuzhev           Dmitriy    BLR          1107.8     549.4
## 384    70  85      Bormolini            Thomas    ITA          1102.0     551.9
## 385    71  78          Oblak            Lenart    SLO          1087.6     545.8
## 386    72  13       Puchianu            Cornel    ROU          1126.9     598.3
## 387    73  58         Zlatev              Ivan    BUL          1119.9     536.7
## 388    74  61          Braun             Maxim    KAZ          1135.9     545.0
## 389    75  44          Sloof              Joel    NED          1114.9     538.8
## 390    76   8       Arwidson            Tobias    SWE          1114.7     557.6
## 391    77  50          Trsan               Rok    SLO          1138.8     569.1
## 392    78  72        Krupcik             Tomas    CZE          1119.6     593.1
## 393    79  84         Pantov             Anton    KAZ          1142.4     565.6
## 394    80  90        Eliseev            Matvey    RUS          1143.4     571.9
## 395    81  68       Almoukov            Alexei    AUS          1137.4     565.7
## 396    82  83        Slotins           Roberts    LAT          1156.2     598.0
## 397    83  64       Kaukenas             Tomas    LTU          1175.4     628.1
## 398    84  77        Stephan         Christoph    GER          1210.8     706.5
## 399    85  60        Puzulis           Rolands    LAT          1173.1     604.7
## 400    86  79       Koivunen            Mikael    FIN          1188.2     635.5
## 401    87  57         Rastic             Damir    SRB          1206.4     668.4
## 402    88  76     Krsmanovic             Dejan    SRB          1281.3     683.7
## 403     1   3            Fak             Jakov    SLO          1894.7     470.8
## 404     2   2       Shipulin             Anton    RUS          1910.9     455.6
## 405     3  18            Boe            Tarjei    NOR          1901.0     471.3
## 406     4  10       Fourcade             Simon    FRA          1913.2     464.9
## 407     5  14           Eder             Simon    AUT          1918.0     464.4
## 408     6  19        Beatrix    Jean Guillaume    FRA          1918.0     468.3
## 409     7  13        Peiffer              Arnd    GER          1941.3     494.7
## 410     8  17          Boehm            Daniel    GER          1932.6     474.7
## 411     9   4            Boe Johannes Thingnes    NOR          1935.7     492.6
## 412    10  16          Weger          Benjamin    SUI          1951.9     467.7
## 413    11  24   Rastorgujevs           Andrejs    LAT          1961.5     469.1
## 414    12   7     Garanichev           Evgeniy    RUS          1957.1     501.5
## 415    13   9         Lesser              Erik    GER          1937.5     505.2
## 416    14  22 Fillon Maillet           Quentin    FRA          1935.3     501.1
## 417    15  12     Lindstroem           Fredrik    SWE          1957.7     486.8
## 418    16  30       Eberhard            Julian    AUT          1982.1     469.8
## 419    17  15          Smith            Nathan    CAN          1971.6     489.9
## 420    18  27       Chepelin          Vladimir    BLR          1971.3     496.5
## 421    19  28          Kuehn          Johannes    GER          1981.2     499.9
## 422    20   1       Fourcade            Martin    FRA          1969.6     504.8
## 423    21   5        Moravec            Ondrej    CZE          1991.1     481.9
## 424    22  20           Doll          Benedikt    GER          2009.0     558.8
## 425    23   6       Slesingr            Michal    CZE          2009.3     503.2
## 426    24  26       Nordgren              Leif    USA          1998.6     503.8
## 427    25  25           Anev          Krasimir    BUL          1995.6     500.3
## 428    26  23        Semenov            Sergii    UKR          2019.7     477.1
## 429    27   8       Svendsen        Emil Hegle    NOR          2005.2     533.5
## 430    28  11        Lapshin           Timofei    RUS          2020.3     482.2
## 431    29  29           Graf           Florian    GER          2044.9     561.5
## 432    30  21          Iliev          Vladimir    BUL          2066.9     534.4
## 433     1   5          Smith            Nathan    CAN          1590.9     414.0
## 434     2   3           Doll          Benedikt    GER          1628.6     420.7
## 435     3   2       Shipulin             Anton    RUS          1636.8     444.6
## 436     4   1       Fourcade            Martin    FRA          1637.2     439.0
## 437     5  11          Boehm            Daniel    GER          1645.7     426.2
## 438     6   6        Peiffer              Arnd    GER          1653.0     446.5
## 439     7   7     Lindstroem           Fredrik    SWE          1656.6     423.2
## 440     8   4   Rastorgujevs           Andrejs    LAT          1685.9     461.0
## 441     9  15       Slesingr            Michal    CZE          1705.7     400.1
## 442    10  18            Fak             Jakov    SLO          1716.3     395.9
## 443    11   8       Fourcade             Simon    FRA          1697.4     459.5
## 444    11  50            Boe            Tarjei    NOR          1715.8     400.4
## 445    13  19          Weger          Benjamin    SUI          1714.2     438.4
## 446    14  57          Hofer             Lukas    ITA          1716.3     430.4
## 447    15  25       Chepelin          Vladimir    BLR          1712.2     432.9
## 448    16  36        Semenov            Sergii    UKR          1718.4     420.2
## 449    17  21       Nordgren              Leif    USA          1703.4     404.0
## 450    18  23           Graf           Florian    GER          1714.4     407.4
## 451    19  22       Eberhard            Julian    AUT          1734.6     437.2
## 452    20  12        Beatrix    Jean Guillaume    FRA          1707.5     447.8
## 453    21  40       Malyshko            Dmitry    RUS          1734.4     435.6
## 454    22  51         Bailey            Lowell    USA          1721.9     424.0
## 455    23  30          Green           Brendan    CAN          1725.3     408.4
## 456    24  53     Mesotitsch            Daniel    AUT          1739.0     415.6
## 457    25  26         Lesser              Erik    GER          1735.6     485.7
## 458    26  31         Joller              Ivan    SUI          1729.9     427.2
## 459    27   9    Bjoerndalen         Ole Einar    NOR          1740.3     410.7
## 460    28  44         Slepov            Alexey    RUS          1758.8     446.0
## 461    29  24         Volkov            Alexey    RUS          1742.3     458.7
## 462    30  43         Roesch           Michael    BEL          1745.5     454.9
## 463    31  10          Kuehn          Johannes    GER          1760.9     503.4
## 464    32  20           Anev          Krasimir    BUL          1759.6     406.9
## 465    33  34          Iliev          Vladimir    BUL          1776.7     423.6
## 466    34  17         Dolder             Mario    SUI          1760.5     457.0
## 467    35  48           Eder             Simon    AUT          1800.4     459.1
## 468    36  33     Garanichev           Evgeniy    RUS          1799.5     452.1
## 469    37  27           Koiv             Kauri    EST          1789.3     466.4
## 470    38  41        Zhyrnyi         Oleksandr    UKR          1798.3     440.4
## 471    39  35     Grossegger              Sven    AUT          1799.0     482.0
## 472    40  37          Bauer            Klemen    SLO          1810.5     433.5
## 473    41  14       Tsvetkov             Maxim    RUS          1807.9     455.4
## 474    42  38        Moravec            Ondrej    CZE          1817.7     413.3
## 475    43  54       Windisch           Dominik    ITA          1826.4     400.6
## 476    44  60        Lapshin           Timofei    RUS          1817.2     422.7
## 477    45  28          Kazar             Matej    SVK          1833.4     455.4
## 478    46  29         Liadov             Yuryi    BLR          1841.9     456.3
## 479    47  59      Birkeland        Lars Helge    NOR          1836.9     462.1
## 480    48  52          Pryma             Artem    UKR          1843.5     458.4
## 481    49  32       Wiestner           Serafin    SUI          1855.6     500.0
## 482    50  56         Krcmar            Michal    CZE          1854.2     427.3
## 483    51  58    L'Abee-Lund            Henrik    NOR          1855.2     425.5
## 484    52  45        Abasheu           Dzmitry    BLR          1868.0     435.8
## 485    53  55          Burke               Tim    USA          1881.2     462.1
## 486    54  49     Hiidensalo              Olli    FIN          1890.8     469.3
## 487    55  47  Gjermundshaug            Vegard    NOR          1890.3     494.8
## 488     1  16            Boe Johannes Thingnes    NOR          1014.1     527.7
## 489     2  12          Smith            Nathan    CAN          1021.7     527.7
## 490     3  38            Boe            Tarjei    NOR          1032.5     528.2
## 491     4  41       Fourcade             Simon    FRA          1034.7     547.0
## 492     5  36         Lesser              Erik    GER          1036.8     537.4
## 493     6  11     Garanichev           Evgeniy    RUS          1041.8     552.1
## 494     7  10       Slesingr            Michal    CZE          1047.4     527.5
## 495     8   4          Iliev          Vladimir    BUL          1033.4     513.1
## 496     9  23        Moravec            Ondrej    CZE          1048.5     555.3
## 497    10  39           Doll          Benedikt    GER          1055.8     559.7
## 498    11  43         Soukup          Jaroslav    CZE          1036.4     528.8
## 499    12  25       Fourcade            Martin    FRA          1061.8     575.1
## 500    13   7          Weger          Benjamin    SUI          1063.2     544.6
## 501    14  17            Fak             Jakov    SLO          1069.1     556.7
## 502    15   5          Burke               Tim    USA          1063.4     542.4
## 503    16  21         Liadov             Yuryi    BLR          1061.7     566.1
## 504    17  40         Bailey            Lowell    USA          1058.0     543.7
## 505    18  28       Shipulin             Anton    RUS          1066.6     551.4
## 506    19  34    Bjoerndalen         Ole Einar    NOR          1069.9     558.0
## 507    20  26     Lindstroem           Fredrik    SWE          1077.7     586.2
## 508    21  18          Green           Brendan    CAN          1064.9     556.2
## 509    21  54         Roesch           Michael    BEL          1050.0     530.2
## 510    23  14       Windisch           Dominik    ITA          1077.9     541.7
## 511    24   2          Hofer             Lukas    ITA          1079.9     569.3
## 512    25  58     De Lorenzi         Christian    ITA          1061.0     548.8
## 513    26   6        Semenov            Sergii    UKR          1091.2     566.9
## 514    27  31        Lapshin           Timofei    RUS          1086.4     567.8
## 515    28   3         Dolder             Mario    SUI          1073.1     572.6
## 516    29  53       Wiestner           Serafin    SUI          1093.6     553.3
## 517    30  27        Peiffer              Arnd    GER          1085.0     575.0
## 518    31  57        Lessing            Roland    EST          1070.1     527.3
## 519    32  51       Puchianu            Cornel    ROU          1084.4     548.3
## 520    33  48          Kazar             Matej    SVK          1083.9     570.3
## 521    34  37       Malyshko            Dmitry    RUS          1088.9     519.2
## 522    35  59    L'Abee-Lund            Henrik    NOR          1075.0     544.8
## 523    36   8       Svendsen        Emil Hegle    NOR          1105.2     557.9
## 524    36  46         Joller              Ivan    SUI          1092.8     561.1
## 525    38  29 Fillon Maillet           Quentin    FRA          1089.7     585.0
## 526    39  30   Landertinger           Dominik    AUT          1096.0     566.1
## 527    39  42        Beatrix    Jean Guillaume    FRA          1096.3     599.7
## 528    41  35     Mesotitsch            Daniel    AUT          1101.2     554.3
## 529    42   1   Rastorgujevs           Andrejs    LAT          1107.4     568.0
## 530    43   9       Chepelin          Vladimir    BLR          1110.4     548.2
## 531    44  50       Eberhard            Julian    AUT          1125.9     561.1
## 532    45  22       Nordgren              Leif    USA          1106.6     610.4
## 533    46  19           Eder             Simon    AUT          1121.7     583.5
## 534    47  15          Bauer            Klemen    SLO          1127.6     588.8
## 535    48  56        Zhyrnyi         Oleksandr    UKR          1107.9     551.8
## 536    49  24     Pidruchnyi            Dmytro    UKR          1105.3     557.8
## 537    50  55            Gow             Scott    CAN          1102.1     566.4
## 538    51  70      Kauppinen            Jarkko    FIN          1091.7     577.5
## 539    52  13           Anev          Krasimir    BUL          1127.9     624.8
## 540    53  89           Koiv             Kauri    EST          1112.9     582.7
## 541    54  61       Toivanen              Ahti    FIN          1111.5     575.3
## 542    55  97        Doherty              Sean    USA          1128.2     557.1
## 543    56  47        Dyuzhev           Dmitriy    BLR          1130.4     590.4
## 544    57  64         Zlatev              Ivan    BUL          1139.2     590.0
## 545    58 120      Plywaczyk         Krzysztof    POL          1123.7     610.4
## 546    59  33         Krcmar            Michal    CZE          1155.3     581.2
## 547    60  88       Kaukenas             Tomas    LTU          1134.6     608.2
## 548    61 108           Buta            George    ROU          1133.8     611.7
## 549    62  32          Pryma             Artem    UKR          1157.6     621.7
## 550    63  68       Szczurek            Lukasz    POL          1144.8     581.8
## 551    64  52         Ermits             Kalev    EST          1158.8     567.2
## 552    65  62        Otcenas            Martin    SVK          1148.3     603.6
## 553    66 102          Maric             Janez    SLO          1159.5     641.5
## 554    67  44       Kobonoki           Tsukasa    JPN          1155.7     604.2
## 555    68  80     Dombrovski             Karol    LTU          1148.3     620.7
## 556    69 110        Strolia          Vytautas    LTU          1150.1     607.4
## 557    70  99        Abasheu           Dzmitry    BLR          1162.9     600.2
## 558    71  98          Trsan               Rok    SLO          1160.6     639.8
## 559    72  60        Armgren               Ted    SWE          1165.4     638.2
## 560    73 109            Gow         Christian    CAN          1157.4     608.7
## 561    74 111       Matiasko          Miroslav    SVK          1165.1     626.8
## 562    75  92        Hasilla             Tomas    SVK          1148.9     602.0
## 563    76 128        Sinapov             Anton    BUL          1165.5     581.3
## 564    77  20        Schempp             Simon    GER          1203.5     608.7
## 565    78  49        Femling             Peppe    SWE          1187.1     608.1
## 566    79  93        Jackson         Lee-Steve    GBR          1171.2     607.7
## 567    80 105      Tachizaki            Mikito    JPN          1174.6     599.9
## 568    81  78          Dixon             Scott    GBR          1158.7     614.9
## 569    82  69         Pantov             Anton    KAZ          1157.1     617.7
## 570    83  74       Eriksson        Christofer    SWE          1199.0     632.7
## 571    84  77        Inomata            Kazuya    JPN          1198.8     615.3
## 572    85  83     Hiidensalo              Olli    FIN          1210.0     641.2
## 573    86 100          Braun             Maxim    KAZ          1162.1     626.2
## 574    87  96           Tang             Jinle    CHN          1219.9     657.2
## 575    88  73            Ren              Long    CHN          1235.9     686.0
## 576    89  90          Guzik          Grzegorz    POL          1227.3     597.1
## 577    90  45      Bormolini            Thomas    ITA          1210.3     661.1
## 578    91  84            Kim           Yonggyu    KOR          1205.3     629.8
## 579    92 104       Almoukov            Alexei    AUS          1215.2     629.3
## 580    93  94        Slotins           Roberts    LAT          1219.6     656.1
## 581    94 101           Faur             Remus    ROU          1231.3     648.7
## 582    95 106         Rastic             Damir    SRB          1237.1     668.5
## 583    96  63      Savitskiy               Yan    KAZ          1247.0     670.2
## 584    97  91            Jun              Jeuk    KOR          1230.8     630.8
## 585    98  75        Angelis         Apostolos    GRE          1249.2     638.4
## 586    99  86         Langer          Thorsten    BEL          1211.9     616.0
## 587   100 124            Kim           Jongmin    KOR          1238.3     638.2
## 588   101 118         Danila     Marian Marcel    ROU          1267.3     670.8
## 589   102 103         Gombos            Karoly    HUN          1270.5     666.4
## 590   103 126        Gronman            Tuomas    FIN          1286.5     703.8
## 591   104 107         Hodzic              Edin    SRB          1245.8     648.6
## 592   105 125            Lee           Suyoung    KOR          1289.5     704.1
## 593   106 127      Praulitis              Toms    LAT          1273.1     690.7
## 594   107  85       Petrovic             Filip    CRO          1281.2     700.4
## 595   108 114           Kane             Kevin    GBR          1302.6     677.9
## 596   109 123    Suslavicius             Rokas    LTU          1303.3     648.1
## 597   110 121         Langer           Thierry    BEL          1335.1     639.2
## 598   111 112       Ustuntas             Ahmet    TUR          1302.3     691.7
## 599   112 119          Maeda               Ryo    JPN          1315.7     707.2
## 600   113 129     Podkorytov          Vassiliy    KAZ          1341.0     791.6
## 601   114  81         Icoski           Gjorgji    MKD          1318.0     720.5
## 602   115  66        Puzulis           Rolands    LAT          1336.5     693.5
## 603   116 116       Kyriazis         Dimitrios    GRE          1309.1     713.6
## 604   117  95     Karamichas         Kleanthis    GRE          1331.3     657.2
## 605   118 115       Laponder            Marcel    GBR          1364.4     757.6
## 606   119  82 Lahaye-Goffart               Tom    BEL          1381.9     702.5
## 607   120 122     Krsmanovic             Dejan    SRB          1405.9     723.1
## 608     1  34       Fourcade            Martin    FRA          2341.8     576.3
## 609     2  17       Svendsen        Emil Hegle    NOR          2345.3     602.7
## 610     3  40        Moravec            Ondrej    CZE          2373.5     584.8
## 611     4   3       Fourcade             Simon    FRA          2359.6     598.2
## 612     5  12        Semenov            Sergii    UKR          2386.2     588.8
## 613     6  69    Bjoerndalen         Ole Einar    NOR          2386.8     598.1
## 614     7  29            Boe Johannes Thingnes    NOR          2402.3     589.8
## 615     8  24        Schempp             Simon    GER          2422.3     582.2
## 616     9  84         Volkov            Alexey    RUS          2404.3     621.6
## 617    10  13            Fak             Jakov    SLO          2444.9     664.9
## 618    11  42          Boehm            Daniel    GER          2435.1     650.5
## 619    12  76     De Lorenzi         Christian    ITA          2421.5     602.2
## 620    13  10         Roesch           Michael    BEL          2449.6     663.0
## 621    14   4       Slesingr            Michal    CZE          2460.2     637.6
## 622    15  45        Lessing            Roland    EST          2445.7     594.5
## 623    16  19       Shipulin             Anton    RUS          2455.8     648.1
## 624    17  31         Liadov             Yuryi    BLR          2430.9     628.0
## 625    18  22         Lesser              Erik    GER          2436.5     676.6
## 626    19   2           Anev          Krasimir    BUL          2471.3     590.6
## 627    20  38           Eder             Simon    AUT          2492.0     643.7
## 628    21  53          Green           Brendan    CAN          2492.8     609.4
## 629    22 104        Peiffer              Arnd    GER          2505.5     718.1
## 630    23  18          Bauer            Klemen    SLO          2512.5     589.3
## 631    24  65         Bailey            Lowell    USA          2505.4     598.8
## 632    25 105            Boe            Tarjei    NOR          2508.1     669.0
## 633    26  75        Krupcik             Tomas    CZE          2497.0     619.3
## 634    27  56          Iliev          Vladimir    BUL          2521.1     714.0
## 635    28  47   Landertinger           Dominik    AUT          2516.8     673.1
## 636    29 126     Grossegger              Sven    AUT          2533.7     731.7
## 637    30  36          Weger          Benjamin    SUI          2547.5     666.5
## 638    31  23          Burke               Tim    USA          2569.6     717.4
## 639    32  43          Maric             Janez    SLO          2545.1     747.5
## 640    33 101       Nordgren              Leif    USA          2540.5     662.3
## 641    34  63          Pryma             Artem    UKR          2548.0     656.8
## 642    35   6     Garanichev           Evgeniy    RUS          2568.7     713.7
## 643    36  41         Soukup          Jaroslav    CZE          2568.3     732.8
## 644    37  37        Armgren               Ted    SWE          2565.7     615.2
## 645    38  92     Lindstroem           Fredrik    SWE          2578.7     737.9
## 646    39  50        Jackson         Lee-Steve    GBR          2545.8     690.9
## 647    40  27         Ermits             Kalev    EST          2573.0     610.8
## 648    41  67       Chepelin          Vladimir    BLR          2570.8     660.9
## 649    42  54          Kazar             Matej    SVK          2589.6     662.2
## 650    43  35       Almoukov            Alexei    AUS          2557.8     659.5
## 651    44  28          Smith            Nathan    CAN          2623.1     713.9
## 652    45  11       Matiasko          Miroslav    SVK          2614.8     616.7
## 653    46  60       Szczurek            Lukasz    POL          2596.8     623.8
## 654    47 125        Doherty              Sean    USA          2621.5     614.7
## 655    48   8   Rastorgujevs           Andrejs    LAT          2634.2     645.1
## 656    49 122      Desthieux             Simon    FRA          2603.1     762.1
## 657    50   7          Hofer             Lukas    ITA          2650.3     727.1
## 658    51   9       Toivanen              Ahti    FIN          2620.2     687.9
## 659    52 108        Rusinov            Dmytro    UKR          2620.3     634.5
## 660    53  94          Braun             Maxim    KAZ          2619.1     694.5
## 661    54  86     Mesotitsch            Daniel    AUT          2659.0     723.8
## 662    55  96           Buta            George    ROU          2643.8     685.1
## 663    56  71         Pantov             Anton    KAZ          2625.2     642.1
## 664    57  98        Beatrix    Jean Guillaume    FRA          2602.9     643.4
## 665    58  66        Lapshin           Timofei    RUS          2645.8     622.5
## 666    59  85           Koiv             Kauri    EST          2657.1     624.2
## 667    60 103     Tyshchenko             Artem    UKR          2668.2     758.4
## 668    61  83       Wiestner           Serafin    SUI          2691.2     739.4
## 669    62  55        Femling             Peppe    SWE          2674.1     657.9
## 670    63  79            Gow             Scott    CAN          2678.8     677.3
## 671    64  82     Hiidensalo              Olli    FIN          2685.7     753.9
## 672    65 124            Gow         Christian    CAN          2664.5     627.2
## 673    66  99        Strolia          Vytautas    LTU          2680.1     647.1
## 674    67  51       Puchianu            Cornel    ROU          2706.6     713.8
## 675    68 110       Arwidson            Tobias    SWE          2653.4     703.1
## 676    69  20       Kobonoki           Tsukasa    JPN          2693.8     623.0
## 677    70  33          Sloof              Joel    NED          2663.5     708.4
## 678    71  14      Plywaczyk         Krzysztof    POL          2670.5     702.0
## 679    72  25           Faur             Remus    ROU          2682.8     699.1
## 680    73  32       Kaukenas             Tomas    LTU          2715.1     612.6
## 681    74 117       Darozhka        Aliaksandr    BLR          2697.2     682.2
## 682    75  57      Kauppinen            Jarkko    FIN          2707.1     687.2
## 683    76 127     Podkorytov          Vassiliy    KAZ          2692.0     785.7
## 684    77  74          Guzik          Grzegorz    POL          2721.8     753.7
## 685    78  39          Dixon             Scott    GBR          2700.7     653.6
## 686    79  70 Fillon Maillet           Quentin    FRA          2721.4     690.5
## 687    80 114       Koivunen            Mikael    FIN          2665.8     741.7
## 688    81  21            Ren              Long    CHN          2740.6     770.1
## 689    81 111     Gerdzhikov           Dimitar    BUL          2734.1     618.0
## 690    83 107      Bormolini            Thomas    ITA          2736.0     698.7
## 691    84  77         Hodzic              Edin    SRB          2700.6     683.2
## 692    85  78        Inomata            Kazuya    JPN          2767.5     689.4
## 693    86  16      Savitskiy               Yan    KAZ          2732.3     772.9
## 694    87 116         Joller              Ivan    SUI          2774.9     703.0
## 695    88  87        Otcenas            Martin    SVK          2789.2     748.5
## 696    89  88      Praulitis              Toms    LAT          2763.4     662.6
## 697    90  62            Jun              Jeuk    KOR          2795.4     840.1
## 698    91  64       Windisch           Dominik    ITA          2821.0     728.1
## 699    92  59         Dolder             Mario    SUI          2818.0     750.2
## 700    93  72     Dombrovski             Karol    LTU          2824.6     818.2
## 701    94  30         Gombos            Karoly    HUN          2791.2     772.7
## 702    95   1            Kim           Yonggyu    KOR          2827.5     658.1
## 703    96 106          Maeda               Ryo    JPN          2835.1     733.9
## 704    97 100        Abasheu           Dzmitry    BLR          2878.7     685.7
## 705    98  97         Langer           Thierry    BEL          2870.8     716.8
## 706    99 113           Sima            Michal    SVK          2880.2     828.1
## 707   100  46         Langer          Thorsten    BEL          2864.5     762.3
## 708   101  93          Oblak            Lenart    SLO          2912.0     646.5
## 709   102 112        Remmelg            Martin    EST          2912.2     778.4
## 710   103  44        Slotins           Roberts    LAT          2956.7     839.2
## 711   104  90       Laponder            Marcel    GBR          2952.5     722.6
## 712   105 109      Patrijuks        Aleksandrs    LAT          2955.2     870.5
## 713   106  52      Tachizaki            Mikito    JPN          3009.1     810.7
## 714   107  26       Ustuntas             Ahmet    TUR          2964.3     685.5
## 715   108  49         Rastic             Damir    SRB          3031.6     772.2
## 716   109  89         Zlatev              Ivan    BUL          3062.1     765.5
## 717   110 115            Lee           Suyoung    KOR          3080.8     797.8
## 718   111  68       Ustuntas            Mehmet    TUR          3027.3     786.4
## 719   112 120         Danila     Marian Marcel    ROU          3119.9     828.5
## 720   113 118    Suslavicius             Rokas    LTU          3073.6     753.1
## 721   114 119           Kane             Kevin    GBR          3100.8     791.9
## 722   115  15     Krsmanovic             Dejan    SRB          3110.4     674.3
## 723   116  61        Angelis         Apostolos    GRE          3121.1     773.8
## 724   117  80      Stanoeski              Toni    MKD          3088.0     865.4
## 725   118  91       Kyriazis         Dimitrios    GRE          3118.6     771.8
## 726   119  95            Kim           Jongmin    KOR          3176.9     971.2
## 727   120 123         Rastic             Ajlan    SRB          3195.9     802.6
## 728     1   9            Fak             Jakov    SLO          1812.5     444.1
## 729     2   8        Moravec            Ondrej    CZE          1811.8     458.8
## 730     3   7            Boe            Tarjei    NOR          1810.0     440.0
## 731     4  15    Bjoerndalen         Ole Einar    NOR          1808.4     462.2
## 732     5  12       Slesingr            Michal    CZE          1830.6     437.4
## 733     6   1            Boe Johannes Thingnes    NOR          1827.0     438.7
## 734     7   5       Shipulin             Anton    RUS          1827.4     439.4
## 735     8  10        Schempp             Simon    GER          1822.5     447.4
## 736     9  14       Fourcade             Simon    FRA          1826.7     480.9
## 737    10   3       Fourcade            Martin    FRA          1842.8     454.2
## 738    11  11     Garanichev           Evgeniy    RUS          1835.1     468.3
## 739    12  16     Lindstroem           Fredrik    SWE          1829.8     458.9
## 740    13  28         Bailey            Lowell    USA          1833.5     461.9
## 741    14  26          Burke               Tim    USA          1845.9     470.6
## 742    15   6       Svendsen        Emil Hegle    NOR          1834.5     460.4
## 743    16  29           Doll          Benedikt    GER          1851.1     476.6
## 744    17   2         Lesser              Erik    GER          1845.1     451.0
## 745    18  22     De Lorenzi         Christian    ITA          1844.2     472.2
## 746    19  13           Eder             Simon    AUT          1854.8     505.2
## 747    20  20         Liadov             Yuryi    BLR          1858.9     493.4
## 748    21  23          Green           Brendan    CAN          1851.9     492.5
## 749    22  25        Peiffer              Arnd    GER          1875.8     456.3
## 750    23   4          Smith            Nathan    CAN          1865.9     465.1
## 751    24  30   Landertinger           Dominik    AUT          1873.2     481.2
## 752    25  18          Iliev          Vladimir    BUL          1871.3     478.9
## 753    26  21         Roesch           Michael    BEL          1893.1     494.7
## 754    27  19        Semenov            Sergii    UKR          1899.2     480.3
## 755    28  24         Soukup          Jaroslav    CZE          1892.2     473.7
## 756    29  17          Weger          Benjamin    SUI          1898.7     491.4
## 757    30  27        Lessing            Roland    EST          1929.3     521.1
## 758     1   5         Lesser              Erik    GER          1528.3     382.7
## 759     2  18       Shipulin             Anton    RUS          1560.5     374.8
## 760     3   3            Boe            Tarjei    NOR          1559.7     382.7
## 761     4   7       Slesingr            Michal    CZE          1566.5     383.5
## 762     5  19    Bjoerndalen         Ole Einar    NOR          1580.3     395.3
## 763     6   8          Iliev          Vladimir    BUL          1578.3     403.1
## 764     7  12       Fourcade            Martin    FRA          1589.0     393.2
## 765     8  14            Fak             Jakov    SLO          1605.4     378.0
## 766     9   9        Moravec            Ondrej    CZE          1606.8     383.6
## 767    10   4       Fourcade             Simon    FRA          1591.3     423.3
## 768    11  26        Semenov            Sergii    UKR          1608.9     378.7
## 769    12  46           Eder             Simon    AUT          1607.5     372.0
## 770    13   2          Smith            Nathan    CAN          1623.3     398.1
## 771    14  30        Peiffer              Arnd    GER          1639.7     398.0
## 772    15  39   Landertinger           Dominik    AUT          1633.9     394.7
## 773    16  21          Green           Brendan    CAN          1629.0     411.9
## 774    17  16         Liadov             Yuryi    BLR          1638.3     408.3
## 775    18  11         Soukup          Jaroslav    CZE          1627.2     380.0
## 776    19  36       Svendsen        Emil Hegle    NOR          1639.3     396.5
## 777    20  15          Burke               Tim    USA          1644.8     429.5
## 778    21  25     De Lorenzi         Christian    ITA          1640.6     398.2
## 779    22   6     Garanichev           Evgeniy    RUS          1646.6     400.1
## 780    23  22         Roesch           Michael    BEL          1634.3     434.8
## 781    24  20     Lindstroem           Fredrik    SWE          1652.0     403.0
## 782    25  42   Rastorgujevs           Andrejs    LAT          1671.9     378.8
## 783    26  41     Mesotitsch            Daniel    AUT          1671.2     385.9
## 784    27  31        Lessing            Roland    EST          1672.7     386.7
## 785    28  10           Doll          Benedikt    GER          1681.5     442.5
## 786    29  35    L'Abee-Lund            Henrik    NOR          1679.5     434.4
## 787    30  24          Hofer             Lukas    ITA          1694.2     409.3
## 788    31   1            Boe Johannes Thingnes    NOR          1693.8     430.2
## 789    32  28         Dolder             Mario    SUI          1694.8     417.6
## 790    33  13          Weger          Benjamin    SUI          1707.1     403.5
## 791    34  32       Puchianu            Cornel    ROU          1706.8     407.1
## 792    35  23       Windisch           Dominik    ITA          1709.4     427.1
## 793    36  17         Bailey            Lowell    USA          1706.2     419.7
## 794    37  44       Eberhard            Julian    AUT          1740.0     416.1
## 795    38  43       Chepelin          Vladimir    BLR          1719.4     406.3
## 796    39  47          Bauer            Klemen    SLO          1726.0     453.1
## 797    40  27        Lapshin           Timofei    RUS          1731.0     432.0
## 798    41  40        Beatrix    Jean Guillaume    FRA          1729.0     468.4
## 799    42  33          Kazar             Matej    SVK          1755.5     412.0
## 800    43  49     Pidruchnyi            Dmytro    UKR          1749.8     416.9
## 801    44  48        Zhyrnyi         Oleksandr    UKR          1753.8     414.8
## 802    45  55        Doherty              Sean    USA          1754.7     409.5
## 803    46  38 Fillon Maillet           Quentin    FRA          1769.0     410.5
## 804    47  34       Malyshko            Dmitry    RUS          1776.5     436.9
## 805    48  56        Dyuzhev           Dmitriy    BLR          1786.5     427.5
## 806    49  52           Anev          Krasimir    BUL          1782.7     399.2
## 807    50  29       Wiestner           Serafin    SUI          1798.5     448.5
## 808    51  45       Nordgren              Leif    USA          1792.1     434.7
## 809    52  50            Gow             Scott    CAN          1794.0     399.3
## 810    53  53           Koiv             Kauri    EST          1792.8     468.0
## 811    54  54       Toivanen              Ahti    FIN          1794.6     432.4
## 812    55  37         Joller              Ivan    SUI          1790.8     412.9
## 813    56  60       Kaukenas             Tomas    LTU          1839.5     448.1
## 814    57  59         Krcmar            Michal    CZE          1877.7     452.6
## 815    58  51      Kauppinen            Jarkko    FIN          1900.9     473.9
## 816    59  57         Zlatev              Ivan    BUL          1938.2     434.9
## 817    60  58      Plywaczyk         Krzysztof    POL          1948.9     434.1
## 818     1  18            Fak             Jakov    SLO          1022.9     515.7
## 819     2  29        Schempp             Simon    GER          1027.2     517.2
## 820     3   2        Beatrix    Jean Guillaume    FRA          1030.7     517.2
## 821     4  27       Fourcade            Martin    FRA          1039.0     539.9
## 822     5  10       Slesingr            Michal    CZE          1042.3     527.3
## 823     6  41       Shipulin             Anton    RUS          1034.8     525.2
## 824     7  25          Smith            Nathan    CAN          1039.0     524.8
## 825     8  21        Semenov            Sergii    UKR          1046.2     531.5
## 826     9  72        Peiffer              Arnd    GER          1050.6     540.8
## 827    10  28            Boe Johannes Thingnes    NOR          1055.1     551.4
## 828    11  34          Boehm            Daniel    GER          1040.1     527.9
## 829    12  26   Landertinger           Dominik    AUT          1069.1     551.9
## 830    13  42         Lesser              Erik    GER          1055.5     550.0
## 831    14   9     Pidruchnyi            Dmytro    UKR          1058.6     535.2
## 832    15   6     Lindstroem           Fredrik    SWE          1059.2     522.7
## 833    16  44       Nordgren              Leif    USA          1060.2     548.6
## 834    17  94        Eliseev            Matvey    RUS          1051.6     524.5
## 835    18  22     Birnbacher           Andreas    GER          1054.4     530.2
## 836    19  36     Garanichev           Evgeniy    RUS          1058.2     542.2
## 837    20  78           Doll          Benedikt    GER          1075.2     544.6
## 838    21  24 Fillon Maillet           Quentin    FRA          1063.5     549.8
## 839    22  39          Green           Brendan    CAN          1076.5     548.8
## 840    23  31       Fourcade             Simon    FRA          1058.3     550.0
## 841    24  12          Bauer            Klemen    SLO          1083.2     554.7
## 842    24  43         Soukup          Jaroslav    CZE          1070.4     558.1
## 843    26  13           Eder             Simon    AUT          1063.9     546.3
## 844    27  51   Bjoentegaard            Erlend    NOR          1085.6     547.4
## 845    28  38         Dolder             Mario    SUI          1079.2     533.3
## 846    29  17          Weger          Benjamin    SUI          1071.9     550.2
## 847    30  57         Ermits             Kalev    EST          1059.6     538.1
## 848    31  55        Dyuzhev           Dmitriy    BLR          1066.3     540.6
## 849    32  56         Krcmar            Michal    CZE          1084.8     543.9
## 850    33  76        Armgren               Ted    SWE          1081.6     549.2
## 851    34  71      Desthieux             Simon    FRA          1081.9     563.8
## 852    35   8    Bjoerndalen         Ole Einar    NOR          1093.3     563.0
## 853    36  33          Iliev          Vladimir    BUL          1102.5     547.4
## 854    37  35     Grossegger              Sven    AUT          1092.7     557.7
## 855    38   4          Burke               Tim    USA          1107.8     520.4
## 856    39   3         Roesch           Michael    BEL          1090.2     560.9
## 857    40  19       Tsvetkov             Maxim    RUS          1096.3     576.2
## 858    41   5          Kazar             Matej    SVK          1099.1     562.4
## 859    42   1        Moravec            Ondrej    CZE          1099.0     544.7
## 860    43  23       Svendsen        Emil Hegle    NOR          1115.5     558.1
## 861    44  83    L'Abee-Lund            Henrik    NOR          1100.3     580.3
## 862    45  79      Guigonnat           Antonin    FRA          1100.2     557.9
## 863    46  81       Kaukenas             Tomas    LTU          1097.3     570.3
## 864    47  37         Liadov             Yuryi    BLR          1111.1     585.3
## 865    48  14           Anev          Krasimir    BUL          1107.0     578.1
## 866    49  30          Pryma             Artem    UKR          1121.0     600.6
## 867    50  16       Chepelin          Vladimir    BLR          1122.8     584.1
## 868    51  50         Pinter         Friedrich    AUT          1121.9     577.9
## 869    52  60       Szczurek            Lukasz    POL          1109.9     553.3
## 870    53  67         Slepov            Alexey    RUS          1135.2     574.7
## 871    54  86         Davies              Macx    CAN          1118.1     558.4
## 872    55  80         Reiter           Michael    AUT          1103.0     578.0
## 873    56  15       Eberhard            Julian    AUT          1156.9     542.5
## 874    57  47        Doherty              Sean    USA          1141.8     536.4
## 875    58   7     De Lorenzi         Christian    ITA          1130.0     602.5
## 876    59  45            Boe            Tarjei    NOR          1141.7     579.8
## 877    60  69     Tyshchenko             Artem    UKR          1139.6     585.4
## 878    61  48          Guzik          Grzegorz    POL          1128.8     593.7
## 879    62  62     Dombrovski             Karol    LTU          1115.2     583.9
## 880    63  68            Gow             Scott    CAN          1141.4     552.7
## 881    64  20       Puchianu            Cornel    ROU          1123.9     556.2
## 882    65  64          Maric             Janez    SLO          1145.0     575.1
## 883    66  70          Trsan               Rok    SLO          1141.3     582.6
## 884    67  93      Yaliotnau             Raman    BLR          1134.3     565.4
## 885    68  82        Remmelg            Martin    EST          1116.6     576.5
## 886    69  58       Matiasko          Miroslav    SVK          1136.8     575.5
## 887    70  11       Toivanen              Ahti    FIN          1155.7     588.7
## 888    71  91        Krupcik             Tomas    CZE          1153.2     624.3
## 889    72  59     Gerdzhikov           Dimitar    BUL          1146.7     578.0
## 890    73  63     Martinelli         Christian    ITA          1144.3     613.7
## 891    74  90    Raatikainen             Antti    FIN          1138.9     581.7
## 892    75  52        Babikov             Anton    RUS          1162.3     580.2
## 893    76  73           Koiv             Kauri    EST          1161.2     593.2
## 894    77  85        Hasilla             Tomas    SVK          1165.2     615.6
## 895    78  49         Danila     Marian Marcel    ROU          1153.1     599.0
## 896    79  87       Siemakov         Volodymyr    UKR          1175.7     549.0
## 897    80  32       Arwidson            Tobias    SWE          1155.9     589.6
## 898    81  92         Joller              Ivan    SUI          1186.0     620.3
## 899    82  66      Tachizaki            Mikito    JPN          1205.7     608.8
## 900    83  75        Gronman            Tuomas    FIN          1194.2     625.9
## 901    84  54         Rastic             Damir    SRB          1215.2     650.0
## 902    85  40        Otcenas            Martin    SVK          1210.4     616.6
## 903    86  74       Wiestner           Serafin    SUI          1242.3     624.2
## 904    87  53          Sloof              Joel    NED          1238.5     627.8
## 905    88  84        Femling             Peppe    SWE          1223.9     590.9
## 906    89  61           Kane             Kevin    GBR          1236.3     642.6
## 907    90  89          Dixon             Scott    GBR          1259.7     680.3
## 908    91  46      Praulitis              Toms    LAT          1226.9     647.4
## 909    92  96     Krsmanovic             Dejan    SRB          1269.9     633.9
## 910    93  88           Lusa          Daumants    LAT          1260.4     660.7
## 911    94  65      Patrijuks        Aleksandrs    LAT          1317.1     660.2
## 912     1   1            Fak             Jakov    SLO          1861.2     480.8
## 913     2   2        Schempp             Simon    GER          1862.6     455.8
## 914     3   4       Fourcade            Martin    FRA          1861.7     475.3
## 915     4   8        Semenov            Sergii    UKR          1878.7     455.8
## 916     5   7          Smith            Nathan    CAN          1883.9     459.2
## 917     6  19     Garanichev           Evgeniy    RUS          1905.9     480.2
## 918     7  18     Birnbacher           Andreas    GER          1909.9     466.6
## 919     8  13         Lesser              Erik    GER          1904.5     484.2
## 920     9   9        Peiffer              Arnd    GER          1921.5     469.6
## 921    10  15     Lindstroem           Fredrik    SWE          1923.1     470.1
## 922    11   5       Slesingr            Michal    CZE          1918.9     491.5
## 923    12  10            Boe Johannes Thingnes    NOR          1935.0     491.3
## 924    13  23       Fourcade             Simon    FRA          1947.6     495.5
## 925    14   6       Shipulin             Anton    RUS          1961.4     467.4
## 926    15  34      Desthieux             Simon    FRA          2002.6     516.7
## 927    16   3        Beatrix    Jean Guillaume    FRA          1981.0     505.7
## 928    17  11          Boehm            Daniel    GER          1985.8     506.8
## 929    18  37     Grossegger              Sven    AUT          1986.4     498.5
## 930    19  21 Fillon Maillet           Quentin    FRA          1995.5     496.1
## 931    20  16       Nordgren              Leif    USA          1996.1     500.7
## 932    21  20           Doll          Benedikt    GER          2016.1     492.9
## 933    22  48           Anev          Krasimir    BUL          2003.1     499.7
## 934    23  43       Svendsen        Emil Hegle    NOR          2001.9     493.0
## 935    24  36          Iliev          Vladimir    BUL          2021.7     499.1
## 936    25  45      Guigonnat           Antonin    FRA          2032.3     501.3
## 937    26  29          Weger          Benjamin    SUI          2038.9     501.8
## 938    27  17        Eliseev            Matvey    RUS          2012.4     551.3
## 939    28  40       Tsvetkov             Maxim    RUS          2033.1     489.8
## 940    29  28         Dolder             Mario    SUI          2043.0     485.3
## 941    30  22          Green           Brendan    CAN          2023.0     526.3
## 942    31  25         Soukup          Jaroslav    CZE          2040.0     481.6
## 943    32  26           Eder             Simon    AUT          2037.2     512.7
## 944    33  32         Krcmar            Michal    CZE          2047.1     511.0
## 945    34  12   Landertinger           Dominik    AUT          2051.7     560.2
## 946    35  35    Bjoerndalen         Ole Einar    NOR          2054.3     468.4
## 947    36  53         Slepov            Alexey    RUS          2062.6     486.0
## 948    37  38          Burke               Tim    USA          2070.0     473.7
## 949    38  27   Bjoentegaard            Erlend    NOR          2071.8     500.2
## 950    39  42        Moravec            Ondrej    CZE          2082.7     500.3
## 951    40  44    L'Abee-Lund            Henrik    NOR          2086.7     493.8
## 952    41  56       Eberhard            Julian    AUT          2106.5     540.7
## 953    42  46       Kaukenas             Tomas    LTU          2114.6     555.8
## 954    43  49          Pryma             Artem    UKR          2135.2     497.1
## 955    44  33        Armgren               Ted    SWE          2126.8     478.7
## 956    45  57        Doherty              Sean    USA          2133.7     500.8
## 957    46  24          Bauer            Klemen    SLO          2119.4     526.5
## 958    47  39         Roesch           Michael    BEL          2090.2     555.3
## 959    48  41          Kazar             Matej    SVK          2129.3     544.6
## 960    49  30         Ermits             Kalev    EST          2158.5     494.5
## 961    50  59            Boe            Tarjei    NOR          2146.7     532.2
## 962    51  51         Pinter         Friedrich    AUT          2165.6     538.8
## 963    52  31        Dyuzhev           Dmitriy    BLR          2181.0     522.5
## 964    53  52       Szczurek            Lukasz    POL          2200.4     522.1
## 965    54  54         Davies              Macx    CAN          2308.9     553.2
## 966     1  27       Fourcade            Martin    FRA          1289.8     806.9
## 967     2   8    Bjoerndalen         Ole Einar    NOR          1281.9     830.8
## 968     3  48        Lapshin           Timofei    RUS          1292.2     844.1
## 969     4  21            Boe Johannes Thingnes    NOR          1303.4     860.2
## 970     5   1          Weger          Benjamin    SUI          1300.6     810.2
## 971     6  19   Rastorgujevs           Andrejs    LAT          1318.8     827.3
## 972     7  37        Lessing            Roland    EST          1311.3     830.3
## 973     8  88           Doll          Benedikt    GER          1318.5     837.1
## 974     9   4           Anev          Krasimir    BUL          1318.5     815.2
## 975    10  23     Tyshchenko             Artem    UKR          1320.8     867.2
## 976    11  36         Liadov             Yuryi    BLR          1321.5     823.5
## 977    12  20           Eder             Simon    AUT          1322.3     830.5
## 978    13  26       Slesingr            Michal    CZE          1331.0     857.4
## 979    14  39          Iliev          Vladimir    BUL          1323.6     852.7
## 980    15   9          Bauer            Klemen    SLO          1332.9     867.6
## 981    16   3            Fak             Jakov    SLO          1333.4     818.3
## 982    16  15 Fillon Maillet           Quentin    FRA          1330.9     849.0
## 983    18  17       Chepelin          Vladimir    BLR          1329.6     876.8
## 984    19  33       Fourcade             Simon    FRA          1321.4     870.2
## 985    20  25     Birnbacher           Andreas    GER          1335.7     834.8
## 986    21  31      Bormolini            Thomas    ITA          1327.7     841.2
## 987    22  56   Bjoentegaard            Erlend    NOR          1355.6     882.3
## 988    23  35       Malyshko            Dmitry    RUS          1345.9     812.8
## 989    24  16     Mesotitsch            Daniel    AUT          1341.9     882.6
## 990    25  28        Moravec            Ondrej    CZE          1346.6     850.2
## 991    26  44         Lesser              Erik    GER          1335.9     880.1
## 992    27  40             Os         Alexander    NOR          1357.7     879.6
## 993    28  92       Wiestner           Serafin    SUI          1331.5     854.0
## 994    29  59       Eriksson        Christofer    SWE          1354.1     868.3
## 995    30   6        Schempp             Simon    GER          1353.4     863.7
## 996    31  32         Soukup          Jaroslav    CZE          1348.3     877.4
## 997    32  65         Roesch           Michael    BEL          1348.0     903.8
## 998    33  12       Windisch           Dominik    ITA          1355.9     876.7
## 999    34  10         Bailey            Lowell    USA          1361.2     906.0
## 1000   35  11          Smith            Nathan    CAN          1369.4     902.1
## 1001   36  13          Boehm            Daniel    GER          1351.1     833.8
## 1002   37   2     Lindstroem           Fredrik    SWE          1366.4     850.8
## 1003   38  24          Kazar             Matej    SVK          1369.5     886.4
## 1004   39  95       Matiasko          Miroslav    SVK          1378.6     907.6
## 1005   40  80         Volkov            Alexey    RUS          1370.9     890.0
## 1006   41  82         Pinter         Friedrich    AUT          1367.8     900.5
## 1007   42  45          Burke               Tim    USA          1384.3     898.5
## 1008   43  29       Shipulin             Anton    RUS          1393.3     883.9
## 1009   43  78           Koiv             Kauri    EST          1377.3     904.5
## 1010   45  38         Dolder             Mario    SUI          1386.2     894.0
## 1011   46  22      Savitskiy               Yan    KAZ          1372.3     867.9
## 1012   47  41       Eberhard            Tobias    AUT          1372.5     892.4
## 1013   48  47            Gow         Christian    CAN          1401.4     903.9
## 1014   49  73         Bedard        Marc Andre    CAN          1384.6     895.4
## 1015   50  34     Grossegger              Sven    AUT          1399.6     863.0
## 1016   51  53      Kauppinen            Jarkko    FIN          1382.0     925.9
## 1017   52  77     Dombrovski             Karol    LTU          1370.2     891.1
## 1018   53  43        Otcenas            Martin    SVK          1413.2     967.5
## 1019   54  90         Davies              Macx    CAN          1407.5     899.9
## 1020   55  83         Krcmar            Michal    CZE          1403.2     894.8
## 1021   56  30        Beatrix    Jean Guillaume    FRA          1383.2     895.1
## 1022   57  49        Hasilla             Tomas    SVK          1395.1     877.8
## 1023   57  51      Desthieux             Simon    FRA          1402.3     909.7
## 1024   59  76      Yaliotnau             Raman    BLR          1421.1     889.4
## 1025   60  42       Arwidson            Tobias    SWE          1397.0     864.5
## 1026   61   5     Garanichev           Evgeniy    RUS          1431.2     922.2
## 1027   62  79        Gronman            Tuomas    FIN          1403.7     874.7
## 1028   63  84        Armgren               Ted    SWE          1410.3     907.9
## 1029   64  62        Peiffer              Arnd    GER          1403.0     938.3
## 1030   65  46     De Lorenzi         Christian    ITA          1433.0     862.7
## 1031   66  91        Zhyrnyi         Oleksandr    UKR          1431.2     900.2
## 1032   67  93   Christiansen    Vetle Sjaastad    NOR          1416.5     867.6
## 1033   68  89         Kryuko            Viktar    BLR          1436.4     906.5
## 1034   69  14       Puchianu            Cornel    ROU          1447.6     934.1
## 1035   70  63      Tobreluts            Indrek    EST          1453.2     947.6
## 1036   71  18       Toivanen              Ahti    FIN          1440.7     953.8
## 1037   72  60    Kilchytskyy           Vitaliy    UKR          1448.9     934.9
## 1038   73  68      Plywaczyk         Krzysztof    POL          1423.6     943.3
## 1039   74  50         Joller              Ivan    SUI          1432.6     935.0
## 1040   75  64         Danila     Marian Marcel    ROU          1436.4     905.0
## 1041   75  71          Maric             Janez    SLO          1452.7     945.0
## 1042   77  69         Pantov             Anton    KAZ          1441.4     899.4
## 1043   78  98       Trifonov          Alexandr    KAZ          1439.1     926.5
## 1044   79  54       Siemakov         Volodymyr    UKR          1446.7     919.3
## 1045   80  72       Eberhard            Julian    AUT          1477.0     876.8
## 1046   81   7       Tsvetkov             Maxim    RUS          1453.8     881.5
## 1047   82  96         Demetz            Maikol    ITA          1446.1     943.6
## 1048   83  97          Jouty          Baptiste    FRA          1462.1     960.6
## 1049   84  52        Femling             Peppe    SWE          1453.5    1004.3
## 1050   85  85        Slotins           Roberts    LAT          1475.6     952.3
## 1051   86  70         Zlatev              Ivan    BUL          1478.2     994.1
## 1052   87  99        Strolia          Vytautas    LTU          1492.1     967.0
## 1053   88  61        Krupcik             Tomas    CZE          1502.2    1007.1
## 1054   89  57        Inomata            Kazuya    JPN          1512.8     974.5
## 1055   90  58           Kane             Kevin    GBR          1507.8     973.0
## 1056   91  74          Sloof              Joel    NED          1497.2     944.5
## 1057   92  94       Laponder            Marcel    GBR          1510.3     964.7
## 1058   93  75          Trsan               Rok    SLO          1542.2     905.6
## 1059   94  55         Rastic             Damir    SRB          1573.9    1005.8
## 1060   95  66        Puzulis           Rolands    LAT          1554.0    1024.1
## 1061   96  81          Oblak            Lenart    SLO          1551.9    1066.3
## 1062   97  86          Guzik          Grzegorz    POL          1572.7     921.7
## 1063   98  67       Almoukov            Alexei    AUS          1579.9     989.5
## 1064   99  87     Krsmanovic             Dejan    SRB          1679.8    1057.7
## 1065    1   1       Fourcade            Martin    FRA          2311.4     495.6
## 1066    2   2       Shipulin             Anton    RUS          2338.2     466.9
## 1067    3  21       Malyshko            Dmitry    RUS          2350.8     507.1
## 1068    4  16           Anev          Krasimir    BUL          2353.3     483.1
## 1069    5  14       Slesingr            Michal    CZE          2366.9     505.0
## 1070    6  26   Rastorgujevs           Andrejs    LAT          2371.1     484.6
## 1071    7   4            Fak             Jakov    SLO          2367.4     496.8
## 1072    8  28           Doll          Benedikt    GER          2370.6     512.4
## 1073    9  18        Lapshin           Timofei    RUS          2377.4     503.6
## 1074   10   5        Schempp             Simon    GER          2377.9     504.8
## 1075   11   9           Eder             Simon    AUT          2386.6     483.4
## 1076   12  15         Lesser              Erik    GER          2384.0     537.0
## 1077   13   6        Moravec            Ondrej    CZE          2414.2     534.1
## 1078   14   7            Boe Johannes Thingnes    NOR          2431.4     499.6
## 1079   15  27        Lessing            Roland    EST          2416.1     479.0
## 1080   16  25       Fourcade             Simon    FRA          2433.6     539.5
## 1081   17  19    Bjoerndalen         Ole Einar    NOR          2438.3     542.3
## 1082   18   8     Birnbacher           Andreas    GER          2430.8     502.2
## 1083   19  23          Iliev          Vladimir    BUL          2435.8     482.9
## 1084   20  11     Lindstroem           Fredrik    SWE          2437.4     503.5
## 1085   20  24          Smith            Nathan    CAN          2440.9     537.0
## 1086   22  17 Fillon Maillet           Quentin    FRA          2430.0     499.8
## 1087   23  10     Garanichev           Evgeniy    RUS          2479.7     555.9
## 1088   24  22       Tsvetkov             Maxim    RUS          2473.0     497.2
## 1089   25  13          Weger          Benjamin    SUI          2484.3     555.3
## 1090   26  29     Tyshchenko             Artem    UKR          2471.6     490.6
## 1091   27   3       Svendsen        Emil Hegle    NOR          2459.6     529.9
## 1092   28  30         Liadov             Yuryi    BLR          2481.5     514.4
## 1093   29  20         Bailey            Lowell    USA          2579.0     556.0
## 1094    1  17       Fourcade            Martin    FRA          1039.2     515.6
## 1095    2  20        Moravec            Ondrej    CZE          1065.5     528.8
## 1096    3  27            Fak             Jakov    SLO          1066.6     530.4
## 1097    4  10       Slesingr            Michal    CZE          1074.8     532.9
## 1098    5  21     Garanichev           Evgeniy    RUS          1066.4     527.8
## 1099    6  18       Shipulin             Anton    RUS          1081.8     529.8
## 1100    7  25       Svendsen        Emil Hegle    NOR          1082.8     545.3
## 1101    8  19    Bjoerndalen         Ole Einar    NOR          1092.1     540.6
## 1102    9   3          Smith            Nathan    CAN          1086.7     537.2
## 1103   10  32           Eder             Simon    AUT          1094.9     558.7
## 1104   11  31        Schempp             Simon    GER          1095.4     550.8
## 1105   12  26         Lesser              Erik    GER          1096.0     538.0
## 1106   13   6   Rastorgujevs           Andrejs    LAT          1094.8     532.7
## 1107   14  37          Boehm            Daniel    GER          1088.0     540.7
## 1108   15  39            Boe            Tarjei    NOR          1110.8     573.6
## 1109   16 101             Os         Alexander    NOR          1095.3     532.2
## 1110   17   4          Burke               Tim    USA          1111.2     548.7
## 1111   18   5          Pryma             Artem    UKR          1105.3     534.8
## 1112   19  44        Beatrix    Jean Guillaume    FRA          1118.3     577.1
## 1113   20  23       Malyshko            Dmitry    RUS          1105.8     559.5
## 1114   21  71     Birnbacher           Andreas    GER          1109.6     540.9
## 1115   22  41         Bailey            Lowell    USA          1111.4     535.3
## 1116   23   9       Fourcade             Simon    FRA          1113.5     575.4
## 1117   24   7          Kazar             Matej    SVK          1113.2     564.9
## 1118   25  43          Bauer            Klemen    SLO          1120.2     559.6
## 1119   26  15        Peiffer              Arnd    GER          1116.6     539.5
## 1120   27   8        Semenov            Sergii    UKR          1124.0     553.4
## 1121   28  38         Komatz             David    AUT          1110.3     562.3
## 1122   29  22   Landertinger           Dominik    AUT          1124.0     557.6
## 1123   30  84       Tsvetkov             Maxim    RUS          1121.6     564.2
## 1124   31  68     Mesotitsch            Daniel    AUT          1129.8     543.1
## 1125   32  61        Krupcik             Tomas    CZE          1119.2     556.5
## 1126   33  40          Hofer             Lukas    ITA          1120.3     562.0
## 1127   34  48       Puchianu            Cornel    ROU          1139.6     570.0
## 1128   35  11     Lindstroem           Fredrik    SWE          1131.1     545.1
## 1129   36  60         Liadov             Yuryi    BLR          1120.9     570.8
## 1130   37  29           Anev          Krasimir    BUL          1125.3     544.2
## 1131   38   1       Eberhard            Tobias    AUT          1124.6     575.1
## 1132   39   2            Boe Johannes Thingnes    NOR          1148.5     576.9
## 1133   40  14      Savitskiy               Yan    KAZ          1142.9     594.6
## 1134   41  45        Lapshin           Timofei    RUS          1140.9     583.4
## 1135   42  13 Fillon Maillet           Quentin    FRA          1154.3     583.9
## 1136   43  35        Hasilla             Tomas    SVK          1138.3     551.1
## 1137   44  47   Christiansen    Vetle Sjaastad    NOR          1132.3     557.8
## 1138   45  64       Toivanen              Ahti    FIN          1144.6     569.9
## 1139   46  59        Femling             Peppe    SWE          1135.9     582.7
## 1140   47  87         Cuenot           Gaspard    SUI          1148.1     577.0
## 1141   48  83         Krcmar            Michal    CZE          1153.0     576.4
## 1142   49  98           Graf           Florian    GER          1140.6     585.2
## 1143   50  79       Nordgren              Leif    USA          1143.7     578.6
## 1144   51  34       Arwidson            Tobias    SWE          1132.8     555.0
## 1145   52  28       Chepelin          Vladimir    BLR          1173.0     633.6
## 1146   53  12       Windisch           Dominik    ITA          1164.9     599.1
## 1147   54  81        Zhyrnyi         Oleksandr    UKR          1150.2     566.2
## 1148   55  33         Soukup          Jaroslav    CZE          1169.0     593.6
## 1149   56  46          Iliev          Vladimir    BUL          1169.3     618.7
## 1150   57  75      Bormolini            Thomas    ITA          1152.0     575.0
## 1151   58  94     Grossegger              Sven    AUT          1151.4     584.9
## 1152   59  52      Desthieux             Simon    FRA          1171.9     600.3
## 1153   60  99         Bedard        Marc Andre    CAN          1161.9     591.4
## 1154   61  62       Almoukov            Alexei    AUS          1145.5     576.2
## 1155   62  36          Green           Brendan    CAN          1180.3     593.7
## 1156   63  90       Eriksson        Christofer    SWE          1166.4     587.3
## 1157   64  30           Koiv             Kauri    EST          1156.4     600.7
## 1158   65  76        Armgren               Ted    SWE          1170.6     580.4
## 1159   66  42     Pidruchnyi            Dmytro    UKR          1174.9     620.4
## 1160   67  57        Finello            Jeremy    SUI          1174.3     596.1
## 1161   68  69     Dombrovski             Karol    LTU          1173.5     604.6
## 1162   69  56          Sloof              Joel    NED          1167.9     592.5
## 1163   69 100     Hiidensalo              Olli    FIN          1192.4     586.4
## 1164   71  78         Joller              Ivan    SUI          1196.5     592.3
## 1165   72  65        Otcenas            Martin    SVK          1197.7     617.0
## 1166   73  95          Braun             Maxim    KAZ          1196.4     613.7
## 1167   74  63        Remmelg            Martin    EST          1179.4     579.9
## 1168   75  70         Roesch           Michael    BEL          1173.5     582.0
## 1169   76  89         Ermits             Kalev    EST          1196.2     558.8
## 1170   77  72       Szczurek            Lukasz    POL          1183.6     575.0
## 1171   78  50       Trifonov          Alexandr    KAZ          1177.5     607.3
## 1172   79  54       Kobonoki           Tsukasa    JPN          1204.5     634.3
## 1173   80  24          Weger          Benjamin    SUI          1219.1     608.4
## 1174   81 102     De Lorenzi         Christian    ITA          1199.3     616.4
## 1175   82  96    Budzilovich           Dzmitry    BLR          1201.1     604.7
## 1176   83  51         Hakala             Matti    FIN          1196.8     630.8
## 1177   84  86         Danila     Marian Marcel    ROU          1206.2     616.8
## 1178   85  85      Plywaczyk         Krzysztof    POL          1205.2     630.3
## 1179   86  67       Darozhka        Aliaksandr    BLR          1223.5     635.7
## 1180   87  66          Oblak            Lenart    SLO          1217.3     616.5
## 1181   88  16       Kaukenas             Tomas    LTU          1232.1     580.7
## 1182   89  93        Currier           Russell    USA          1254.2     581.7
## 1183   90  49        Puzulis           Rolands    LAT          1246.6     638.6
## 1184   91  55         Rastic             Damir    SRB          1241.3     651.9
## 1185   92  97      Patrijuks        Aleksandrs    LAT          1249.1     597.9
## 1186   93  73   Lobo Escolar            Victor    ESP          1255.6     624.4
## 1187   94  77        Jackson         Lee-Steve    GBR          1267.2     626.4
## 1188   95  88         Hodzic              Edin    SRB          1270.8     613.3
## 1189   96  82           Sima            Michal    SVK          1278.1     623.5
## 1190   97  80         Zlatev              Ivan    BUL          1310.8     652.5
## 1191   98  92       Laponder            Marcel    GBR          1322.2     673.6
## 1192   99  58     Tyshchenko             Artem    UKR          1385.0     654.9
## 1193    1   4       Svendsen        Emil Hegle    NOR          2607.4     675.6
## 1194    2   7        Semenov            Sergii    UKR          2679.9     667.9
## 1195    3  16       Slesingr            Michal    CZE          2739.5     686.7
## 1196    4  41         Lesser              Erik    GER          2738.5     692.7
## 1197    5  12     Lindstroem           Fredrik    SWE          2751.9     748.6
## 1198    6  21    Bjoerndalen         Ole Einar    NOR          2756.4     648.2
## 1199    7  18   Landertinger           Dominik    AUT          2787.2     674.5
## 1200    8   6            Boe Johannes Thingnes    NOR          2791.8     716.9
## 1201    9  45       Fourcade             Simon    FRA          2753.8     693.7
## 1202   10  98 Fillon Maillet           Quentin    FRA          2783.9     766.2
## 1203   11  39          Burke               Tim    USA          2819.2     674.2
## 1204   12  17        Moravec            Ondrej    CZE          2766.8     746.9
## 1205   13  44       Windisch           Dominik    ITA          2797.1     754.5
## 1206   14  28           Anev          Krasimir    BUL          2814.8     817.4
## 1207   15  20     Garanichev           Evgeniy    RUS          2850.5     782.0
## 1208   16  34        Peiffer              Arnd    GER          2841.0     819.0
## 1209   17   3          Weger          Benjamin    SUI          2865.6     735.2
## 1210   18  51       Tsvetkov             Maxim    RUS          2858.0     770.6
## 1211   19  97      Bormolini            Thomas    ITA          2862.9     771.0
## 1212   20  15         Bailey            Lowell    USA          2880.7     822.6
## 1213   21  38       Arwidson            Tobias    SWE          2834.5     704.2
## 1214   22  42          Bauer            Klemen    SLO          2888.7     810.1
## 1215   23  26          Boehm            Daniel    GER          2880.9     795.8
## 1216   24  14            Fak             Jakov    SLO          2908.3     801.3
## 1217   25  19        Schempp             Simon    GER          2881.4     703.3
## 1218   26  87        Finello            Jeremy    SUI          2894.8     757.0
## 1219   27  27        Beatrix    Jean Guillaume    FRA          2906.9     730.9
## 1220   28  69       Puchianu            Cornel    ROU          2893.9     817.3
## 1221   29  33            Boe            Tarjei    NOR          2912.0     804.3
## 1222   30  37          Iliev          Vladimir    BUL          2926.2     796.6
## 1223   31  35       Eberhard            Tobias    AUT          2943.4     800.2
## 1224   32  78       Kobonoki           Tsukasa    JPN          2891.9     791.1
## 1225   33  36         Soukup          Jaroslav    CZE          2935.3     894.9
## 1226   34  73        Lessing            Roland    EST          2933.5     710.7
## 1227   35  95     Birnbacher           Andreas    GER          2968.8     810.5
## 1228   36  88         Komatz             David    AUT          2978.5     760.3
## 1229   37  76     Tyshchenko             Artem    UKR          2961.5     791.5
## 1230   38  61       Toivanen              Ahti    FIN          2974.6     826.2
## 1231   39  23      Desthieux             Simon    FRA          2978.8     871.8
## 1232   40  43        Hasilla             Tomas    SVK          2961.5     738.2
## 1233   41  32           Koiv             Kauri    EST          2983.2     773.0
## 1234   42  40        Lapshin           Timofei    RUS          3018.5     811.5
## 1235   43  24     Mesotitsch            Daniel    AUT          3010.2     792.6
## 1236   44  22          Kazar             Matej    SVK          2993.9     772.6
## 1237   45   5      Savitskiy               Yan    KAZ          3007.3     751.7
## 1238   46  96        Krupcik             Tomas    CZE          2979.9     838.0
## 1239   47  13       Chepelin          Vladimir    BLR          2998.4     789.1
## 1240   48  25          Hofer             Lukas    ITA          2965.8     892.4
## 1241   49  30          Green           Brendan    CAN          3017.4     725.6
## 1242   50  48         Roesch           Michael    BEL          2993.5     832.5
## 1243   51  63     De Lorenzi         Christian    ITA          3020.0     766.5
## 1244   52  70       Trifonov          Alexandr    KAZ          3009.9     790.7
## 1245   53 101   Christiansen    Vetle Sjaastad    NOR          3027.3     896.8
## 1246   54   8          Smith            Nathan    CAN          3075.7     792.4
## 1247   55  92       Stegmayr           Gabriel    SWE          3017.4     751.8
## 1248   56  64        Armgren               Ted    SWE          3059.5     754.5
## 1249   57  75         Rastic             Damir    SRB          3045.0     775.8
## 1250   58  29       Malyshko            Dmitry    RUS          3055.9     777.2
## 1251   59   1       Shipulin             Anton    RUS          3114.5     724.1
## 1252   60  85    Kilchytskyy           Vitaliy    UKR          3076.6     713.9
## 1253   61  86         Bedard        Marc Andre    CAN          3083.4     848.6
## 1254   62  71          Boeuf            Alexis    FRA          3031.5     860.7
## 1255   63  62       Almoukov            Alexei    AUS          3081.8     783.0
## 1256   64  66     Grossegger              Sven    AUT          3119.5     817.9
## 1257   65  74        Puzulis           Rolands    LAT          3084.1     809.7
## 1258   66  67         Zlatev              Ivan    BUL          3130.1     731.7
## 1259   67  80         Hakala             Matti    FIN          3114.4     770.5
## 1260   68  31     Pidruchnyi            Dmytro    UKR          3101.2     786.9
## 1261   69  11           Eder             Simon    AUT          3142.6     761.2
## 1262   70  72       Szczurek            Lukasz    POL          3123.5     725.2
## 1263   71  49       Nordgren              Leif    USA          3091.9     795.3
## 1264   72  46         Liadov             Yuryi    BLR          3146.6     905.8
## 1265   73  50         Perras             Scott    CAN          3123.9     780.8
## 1266   74  94        Currier           Russell    USA          3171.5     710.8
## 1267   75  56           Graf           Florian    GER          3174.4     859.1
## 1268   76  81      Tcherezov              Ivan    RUS          3142.7     724.8
## 1269   77  52     Dombrovski             Karol    LTU          3163.4     772.1
## 1270   78  93      Plywaczyk         Krzysztof    POL          3154.2     801.2
## 1271   79  58         Joller              Ivan    SUI          3182.6     888.4
## 1272   80  79         Krcmar            Michal    CZE          3174.9     890.5
## 1273   81  10       Fourcade            Martin    FRA          3099.2     842.6
## 1274   82   9       Kaukenas             Tomas    LTU          3192.2     757.1
## 1275   83  54       Eriksson        Christofer    SWE          3226.5     769.4
## 1276   84  59      Birkeland        Lars Helge    NOR          3257.0     851.9
## 1277   85  53        Otcenas            Martin    SVK          3235.3     850.1
## 1278   86  84       Matiasko          Miroslav    SVK          3208.6     853.2
## 1279   87  83          Braun             Maxim    KAZ          3215.3     888.4
## 1280   88 100         Hodzic              Edin    SRB          3213.8     835.9
## 1281   89  89         Danila     Marian Marcel    ROU          3280.0     924.2
## 1282   90  60         Cuenot           Gaspard    SUI          3299.3     901.0
## 1283   91  57       Darozhka        Aliaksandr    BLR          3265.4     793.3
## 1284   92  77          Sloof              Joel    NED          3249.2     882.2
## 1285   93  90         Ermits             Kalev    EST          3363.7     888.0
## 1286   94  99    Budzilovich           Dzmitry    BLR          3328.8     812.0
## 1287   95  47        Jackson         Lee-Steve    GBR          3378.6     784.9
## 1288   96  91      Patrijuks        Aleksandrs    LAT          3340.5     874.8
## 1289   97  68          Oblak            Lenart    SLO          3381.2     944.5
## 1290   98 102       Laponder            Marcel    GBR          3454.9     829.9
## 1291   99  65   Lobo Escolar            Victor    ESP          3559.4     831.1
## 1292    1   1       Fourcade            Martin    FRA          1698.4     419.2
## 1293    2   6       Shipulin             Anton    RUS          1708.8     403.6
## 1294    3   7       Svendsen        Emil Hegle    NOR          1723.1     424.4
## 1295    4   3            Fak             Jakov    SLO          1729.0     458.4
## 1296    5  30   Landertinger           Dominik    AUT          1736.1     423.7
## 1297    6  11        Schempp             Simon    GER          1735.5     428.9
## 1298    7  22     Birnbacher           Andreas    GER          1735.1     425.9
## 1299    8  16             Os         Alexander    NOR          1734.7     427.5
## 1300    9  20        Beatrix    Jean Guillaume    FRA          1763.0     435.2
## 1301   10   8    Bjoerndalen         Ole Einar    NOR          1762.5     432.2
## 1302   11   5     Garanichev           Evgeniy    RUS          1772.7     416.9
## 1303   12  26          Bauer            Klemen    SLO          1772.1     436.3
## 1304   13  36     Lindstroem           Fredrik    SWE          1778.5     452.9
## 1305   14  15            Boe            Tarjei    NOR          1800.5     453.4
## 1306   15  45   Christiansen    Vetle Sjaastad    NOR          1785.7     427.8
## 1307   16   9          Smith            Nathan    CAN          1779.0     492.5
## 1308   17  23         Bailey            Lowell    USA          1799.5     439.7
## 1309   18  27        Peiffer              Arnd    GER          1803.7     466.1
## 1310   19   4       Slesingr            Michal    CZE          1807.0     477.0
## 1311   20   2        Moravec            Ondrej    CZE          1807.7     468.3
## 1312   21  33        Krupcik             Tomas    CZE          1820.5     420.3
## 1313   22  38           Anev          Krasimir    BUL          1821.1     427.0
## 1314   23  12         Lesser              Erik    GER          1833.4     474.2
## 1315   24  10           Eder             Simon    AUT          1836.6     442.7
## 1316   25  32     Mesotitsch            Daniel    AUT          1824.7     450.7
## 1317   26  43 Fillon Maillet           Quentin    FRA          1831.1     436.8
## 1318   27  41      Savitskiy               Yan    KAZ          1830.4     417.1
## 1319   28  13   Rastorgujevs           Andrejs    LAT          1851.5     460.0
## 1320   29  31       Tsvetkov             Maxim    RUS          1848.4     453.8
## 1321   30  40            Boe Johannes Thingnes    NOR          1857.5     486.2
## 1322   31  42        Lapshin           Timofei    RUS          1854.9     443.5
## 1323   32  34          Hofer             Lukas    ITA          1847.5     480.0
## 1324   33  14          Boehm            Daniel    GER          1854.5     487.5
## 1325   34  24       Fourcade             Simon    FRA          1871.4     477.8
## 1326   35  17          Burke               Tim    USA          1872.3     499.9
## 1327   36  28        Semenov            Sergii    UKR          1872.0     500.2
## 1328   37  57          Iliev          Vladimir    BUL          1882.7     445.7
## 1329   38  19          Pryma             Artem    UKR          1890.8     418.3
## 1330   39  37         Liadov             Yuryi    BLR          1887.0     437.9
## 1331   40  29         Komatz             David    AUT          1889.8     428.2
## 1332   41  50           Graf           Florian    GER          1919.0     475.6
## 1333   42  49         Krcmar            Michal    CZE          1921.9     457.0
## 1334   43  21       Malyshko            Dmitry    RUS          1914.0     478.3
## 1335   44  35       Puchianu            Cornel    ROU          1941.6     468.8
## 1336   45  51       Nordgren              Leif    USA          1940.1     480.6
## 1337   46  53       Chepelin          Vladimir    BLR          1964.7     474.2
## 1338   47  59     Grossegger              Sven    AUT          1953.7     483.7
## 1339   48  55        Zhyrnyi         Oleksandr    UKR          1961.6     461.8
## 1340   49  52       Arwidson            Tobias    SWE          1949.4     463.8
## 1341   50  60      Desthieux             Simon    FRA          1976.3     478.3
## 1342   51  44        Hasilla             Tomas    SVK          1981.7     486.7
## 1343   52  58      Bormolini            Thomas    ITA          1997.3     468.5
## 1344   53  54       Windisch           Dominik    ITA          2028.0     499.6
## 1345   54  47        Femling             Peppe    SWE          2032.9     480.0
## 1346   55  56         Soukup          Jaroslav    CZE          2014.7     498.1
## 1347   56  25          Kazar             Matej    SVK          2044.9     561.1
## 1348   57  39       Eberhard            Tobias    AUT          2042.9     497.4
## 1349   58  48         Cuenot           Gaspard    SUI          2058.6     539.3
## 1350   59  46       Toivanen              Ahti    FIN          2050.0     491.3
## 1351    1  70        Peiffer              Arnd    GER          1002.9     505.8
## 1352    2  27       Fourcade            Martin    FRA          1007.7     507.9
## 1353    3  11       Shipulin             Anton    RUS          1007.8     510.1
## 1354    4   7     Birnbacher           Andreas    GER          1006.3     501.9
## 1355    5  44      Birkeland        Lars Helge    NOR          1001.4     504.3
## 1356    6  14 Fillon Maillet           Quentin    FRA          1021.6     515.4
## 1357    7   6        Moravec            Ondrej    CZE          1015.9     513.8
## 1358    8  21            Boe Johannes Thingnes    NOR          1021.9     532.0
## 1359    9  26   Landertinger           Dominik    AUT          1038.0     524.8
## 1360   10  33     Garanichev           Evgeniy    RUS          1019.6     515.2
## 1361   11 100           Doll          Benedikt    GER          1029.3     528.0
## 1362   12  30     Pidruchnyi            Dmytro    UKR          1032.7     523.0
## 1363   13  19        Schempp             Simon    GER          1045.1     527.1
## 1364   14  24         Lesser              Erik    GER          1032.8     538.2
## 1365   15  13        Semenov            Sergii    UKR          1041.6     534.2
## 1366   16  43         Dolder             Mario    SUI          1031.5     523.9
## 1367   17  34     Mesotitsch            Daniel    AUT          1026.5     521.0
## 1368   18  77       Tsvetkov             Maxim    RUS          1038.8     530.1
## 1369   19  31            Fak             Jakov    SLO          1035.6     524.9
## 1370   20  15         Ermits             Kalev    EST          1045.6     515.0
## 1371   21  25        Beatrix    Jean Guillaume    FRA          1045.9     518.1
## 1372   22  16          Smith            Nathan    CAN          1045.6     538.2
## 1373   23  88         Slepov            Alexey    RUS          1053.4     552.5
## 1374   24   2       Slesingr            Michal    CZE          1045.1     546.1
## 1375   25  94      Guigonnat           Antonin    FRA          1047.1     538.7
## 1376   26   1          Weger          Benjamin    SUI          1050.3     556.0
## 1377   27  23          Iliev          Vladimir    BUL          1061.9     536.3
## 1378   28  36     Grossegger              Sven    AUT          1046.6     524.5
## 1379   29   8       Nordgren              Leif    USA          1050.5     517.6
## 1380   30  47          Boehm            Daniel    GER          1059.6     537.2
## 1381   31   4           Eder             Simon    AUT          1065.8     567.7
## 1382   32  48       Fourcade             Simon    FRA          1077.2     510.3
## 1383   33  60      Desthieux             Simon    FRA          1066.0     556.1
## 1384   34   3     Lindstroem           Fredrik    SWE          1056.9     558.3
## 1385   35  45       Malyshko            Dmitry    RUS          1070.1     540.4
## 1386   36  76            Gow             Scott    CAN          1076.4     533.6
## 1387   37  50       Chepelin          Vladimir    BLR          1096.9     580.4
## 1388   38  17             Os         Alexander    NOR          1055.3     536.2
## 1389   39  40          Green           Brendan    CAN          1066.8     527.5
## 1390   40  37          Hofer             Lukas    ITA          1077.7     526.0
## 1391   41  52       Wiestner           Serafin    SUI          1083.3     525.0
## 1392   42 101      Stenersen          Torstein    SWE          1056.2     537.5
## 1393   43  20        Lapshin           Timofei    RUS          1053.3     532.1
## 1394   44  41           Anev          Krasimir    BUL          1063.6     539.4
## 1395   45  67      Bormolini            Thomas    ITA          1059.4     536.1
## 1396   46  39         Krcmar            Michal    CZE          1074.1     560.7
## 1397   47   5         Liadov             Yuryi    BLR          1080.2     574.3
## 1398   48  28    L'Abee-Lund            Henrik    NOR          1092.2     570.3
## 1399   49  18          Bauer            Klemen    SLO          1092.4     541.0
## 1400   50  68       Matiasko          Miroslav    SVK          1083.2     558.8
## 1401   51  12   Rastorgujevs           Andrejs    LAT          1088.6     519.5
## 1402   52  29         Roesch           Michael    BEL          1064.0     550.3
## 1403   53  38       Arwidson            Tobias    SWE          1059.2     539.8
## 1404   54  75        Krupcik             Tomas    CZE          1084.2     560.1
## 1405   55  73     Tyshchenko             Artem    UKR          1088.1     542.1
## 1406   56  62        Waernes    Andreas Dahloe    NOR          1088.7     576.9
## 1407   57  66        Dyuzhev           Dmitriy    BLR          1102.1     536.2
## 1408   58  56        Hasilla             Tomas    SVK          1083.7     552.4
## 1409   59  89       Siemakov         Volodymyr    UKR          1088.5     557.7
## 1410   60  53       Eberhard            Julian    AUT          1126.6     538.3
## 1411   61  91         Joller              Ivan    SUI          1093.5     555.3
## 1412   62  32         Soukup          Jaroslav    CZE          1094.8     560.5
## 1413   63  80         Bailey            Lowell    USA          1106.4     580.6
## 1414   64  49        Lessing            Roland    EST          1103.7     556.6
## 1415   65   9       Puchianu            Cornel    ROU          1084.8     564.9
## 1416   65  82       Kubaliak            Michal    SVK          1090.4     550.0
## 1417   67  92            Gow         Christian    CAN          1096.7     543.6
## 1418   68  42          Burke               Tim    USA          1119.8     600.8
## 1419   69  81        Abasheu           Dzmitry    BLR          1106.5     557.1
## 1420   70  58        Armgren               Ted    SWE          1104.3     581.1
## 1421   71  46          Pryma             Artem    UKR          1135.2     594.6
## 1422   72  83        Gronman            Tuomas    FIN          1110.5     572.0
## 1423   73  55     Hiidensalo              Olli    FIN          1119.1     577.0
## 1424   74  61           Koiv             Kauri    EST          1117.1     579.1
## 1425   75  78     Dombrovski             Karol    LTU          1119.9     594.6
## 1426   76  72          Trsan               Rok    SLO          1132.9     575.8
## 1427   77  98           Sima            Michal    SVK          1119.1     569.9
## 1428   78  93       Kaukenas             Tomas    LTU          1129.8     560.7
## 1429   79  35        Femling             Peppe    SWE          1121.7     556.1
## 1430   80  65     Podkorytov          Vassiliy    KAZ          1125.5     596.7
## 1431   81  63         Danila     Marian Marcel    ROU          1139.4     582.1
## 1432   82  97       Szczurek            Lukasz    POL          1137.6     597.8
## 1433   83  87         Komatz             David    AUT          1152.1     591.7
## 1434   84  69         Zlatev              Ivan    BUL          1139.7     583.1
## 1435   85  85     De Lorenzi         Christian    ITA          1166.4     604.7
## 1436   86  86        Slotins           Roberts    LAT          1141.8     591.7
## 1437   87  10       Windisch           Dominik    ITA          1171.9     571.3
## 1438   88  64   Lobo Escolar            Victor    ESP          1172.6     571.4
## 1439   89  71          Guzik          Grzegorz    POL          1170.5     560.0
## 1440   90  57          Braun             Maxim    KAZ          1186.6     576.0
## 1441   91  59        Jackson         Lee-Steve    GBR          1178.5     598.8
## 1442   92  22       Kobonoki           Tsukasa    JPN          1170.8     615.2
## 1443   93  51      Kauppinen            Jarkko    FIN          1164.1     582.3
## 1444   94  74        Puzulis           Rolands    LAT          1189.5     592.8
## 1445   95  96           Kane             Kevin    GBR          1159.9     609.4
## 1446   96  79         Rastic             Damir    SRB          1223.3     626.2
## 1447   97  99     Krsmanovic             Dejan    SRB          1254.4     618.6
## 1448    1   1       Fourcade            Martin    FRA          2473.7     626.7
## 1449    2   4     Garanichev           Evgeniy    RUS          2477.7     625.5
## 1450    3  18        Semenov            Sergii    UKR          2501.7     635.5
## 1451    4  16            Fak             Jakov    SLO          2570.6     688.6
## 1452    5   3          Weger          Benjamin    SUI          2552.6     651.6
## 1453    6  32            Boe Johannes Thingnes    NOR          2565.1     644.7
## 1454    7  15       Shipulin             Anton    RUS          2573.8     631.1
## 1455    8  22       Slesingr            Michal    CZE          2589.5     639.8
## 1456    9  48         Lesser              Erik    GER          2580.5     645.7
## 1457   10  67       Tsvetkov             Maxim    RUS          2584.8     653.9
## 1458   11  14     Birnbacher           Andreas    GER          2601.3     627.1
## 1459   12  10          Smith            Nathan    CAN          2608.3     707.1
## 1460   13  13        Lapshin           Timofei    RUS          2603.2     657.9
## 1461   14   8 Fillon Maillet           Quentin    FRA          2619.8     697.3
## 1462   15  17          Boehm            Daniel    GER          2615.0     693.1
## 1463   16  46       Fourcade             Simon    FRA          2622.4     638.1
## 1464   17  37          Iliev          Vladimir    BUL          2623.0     654.1
## 1465   18  21         Liadov             Yuryi    BLR          2620.1     658.6
## 1466   19  36       Chepelin          Vladimir    BLR          2619.2     764.8
## 1467   20  57       Nordgren              Leif    USA          2616.4     653.4
## 1468   21  61        Femling             Peppe    SWE          2625.5     661.6
## 1469   22   6   Rastorgujevs           Andrejs    LAT          2627.9     728.2
## 1470   23   9     Lindstroem           Fredrik    SWE          2649.3     710.9
## 1471   24  94      Guigonnat           Antonin    FRA          2642.7     654.8
## 1472   25  74        Peiffer              Arnd    GER          2660.7     655.2
## 1473   26  49         Krcmar            Michal    CZE          2654.4     664.1
## 1474   27  19        Schempp             Simon    GER          2668.0     700.0
## 1475   28  91           Doll          Benedikt    GER          2687.4     658.0
## 1476   29  93      Birkeland        Lars Helge    NOR          2670.8     708.0
## 1477   30  75    L'Abee-Lund            Henrik    NOR          2668.5     737.0
## 1478   31  29           Eder             Simon    AUT          2673.1     655.2
## 1479   32  98         Volkov            Alexey    RUS          2666.5     668.1
## 1480   33  65        Zhyrnyi         Oleksandr    UKR          2690.6     676.0
## 1481   34  30         Roesch           Michael    BEL          2681.7     774.8
## 1482   35   5        Beatrix    Jean Guillaume    FRA          2713.9     769.4
## 1483   36  11       Windisch           Dominik    ITA          2713.2     646.4
## 1484   37  34          Pryma             Artem    UKR          2713.0     640.5
## 1485   38  38       Malyshko            Dmitry    RUS          2701.5     664.3
## 1486   39  43   Bjoentegaard            Erlend    NOR          2700.2     685.9
## 1487   40  20         Ermits             Kalev    EST          2715.8     668.3
## 1488   41  44     Grossegger              Sven    AUT          2724.7     660.8
## 1489   42  35   Landertinger           Dominik    AUT          2715.5     680.8
## 1490   43  28           Anev          Krasimir    BUL          2738.2     775.3
## 1491   44  41          Green           Brendan    CAN          2747.8     785.0
## 1492   45  90     De Lorenzi         Christian    ITA          2728.2     663.7
## 1493   46  53       Eberhard            Julian    AUT          2758.8     634.3
## 1494   47  24          Burke               Tim    USA          2765.5     818.1
## 1495   48  27     Mesotitsch            Daniel    AUT          2742.9     724.5
## 1496   49   2         Soukup          Jaroslav    CZE          2747.7     839.6
## 1497   50  40          Hofer             Lukas    ITA          2774.2     643.3
## 1498   51  79       Szczurek            Lukasz    POL          2710.8     702.1
## 1499   52  12        Armgren               Ted    SWE          2786.2     692.9
## 1500   53  83         Joller              Ivan    SUI          2762.8     677.9
## 1501   54  71      Desthieux             Simon    FRA          2769.7     736.0
## 1502   55  42       Arwidson            Tobias    SWE          2761.9     679.8
## 1503   56  39     Tyshchenko             Artem    UKR          2776.8     747.4
## 1504   57  56      Kauppinen            Jarkko    FIN          2764.7     691.5
## 1505   58  31             Os         Alexander    NOR          2769.3     676.7
## 1506   59  85     Dombrovski             Karol    LTU          2776.2     689.2
## 1507   60  73            Gow             Scott    CAN          2810.0     677.7
## 1508   61  45         Dolder             Mario    SUI          2825.4     724.9
## 1509   62  50         Bailey            Lowell    USA          2819.1     795.3
## 1510   63  88         Komatz             David    AUT          2842.2     679.2
## 1511   64  51        Dyuzhev           Dmitriy    BLR          2845.7     721.9
## 1512   65  70        Hasilla             Tomas    SVK          2830.0     692.1
## 1513   66  64        Krupcik             Tomas    CZE          2848.6     698.3
## 1514   67  59      Bormolini            Thomas    ITA          2869.4     730.9
## 1515   68  89       Stegmayr           Gabriel    SWE          2834.2     707.2
## 1516   69  66           Koiv             Kauri    EST          2891.1     734.6
## 1517   70  23        Moravec            Ondrej    CZE          2905.9     839.1
## 1518   71  82       Kubaliak            Michal    SVK          2844.1     708.0
## 1519   72  63     Podkorytov          Vassiliy    KAZ          2881.1     694.2
## 1520   73  54           Buta            George    ROU          2897.4     702.1
## 1521   74  84           Sima            Michal    SVK          2890.9     764.0
## 1522   75  60          Sloof              Joel    NED          2868.2     773.5
## 1523   76  26       Kobonoki           Tsukasa    JPN          2917.9     751.3
## 1524   77  86        Abasheu           Dzmitry    BLR          2942.9     753.7
## 1525   78  47        Lessing            Roland    EST          2958.6     669.4
## 1526   79  62       Matiasko          Miroslav    SVK          2952.9     802.7
## 1527   80  92       Siemakov         Volodymyr    UKR          2955.5     740.6
## 1528   81  72     Gerdzhikov           Dimitar    BUL          2953.7     709.7
## 1529   82  58       Kaukenas             Tomas    LTU          2987.6     801.1
## 1530   83  52         Rastic             Damir    SRB          2962.9     860.4
## 1531   84  96           Faur             Remus    ROU          2973.8     716.9
## 1532   85  33          Bauer            Klemen    SLO          3045.9     767.5
## 1533   86  76        Finello            Jeremy    SUI          2982.0     831.1
## 1534   87  77        Puzulis           Rolands    LAT          3003.6     802.7
## 1535   88  95          Braun             Maxim    KAZ          3040.8     776.7
## 1536   89  69          Guzik          Grzegorz    POL          3063.8     813.4
## 1537   90  78          Trsan               Rok    SLO          3055.4     758.4
## 1538   91  81        Gronman            Tuomas    FIN          3058.6     770.1
## 1539   92  80     Krsmanovic             Dejan    SRB          3069.8     725.9
## 1540   93  55           Kane             Kevin    GBR          3051.4     810.8
## 1541   94  87      Praulitis              Toms    LAT          3244.4     793.9
## 1542    1   7       Shipulin             Anton    RUS           971.3     481.3
## 1543    2  16   Landertinger           Dominik    AUT           978.7     483.1
## 1544    3  12       Svendsen        Emil Hegle    NOR           986.4     493.1
## 1545    4   6       Fourcade            Martin    FRA          1000.4     508.9
## 1546    5  71     Garanichev           Evgeniy    RUS           987.7     494.0
## 1547    6   8        Schempp             Simon    GER           993.0     497.4
## 1548    7  34            Boe            Tarjei    NOR           995.9     496.1
## 1549    8  39 Fillon Maillet           Quentin    FRA          1000.6     497.5
## 1550    9  47       Tsvetkov             Maxim    RUS          1001.9     500.2
## 1551   10  14            Boe Johannes Thingnes    NOR          1009.6     528.4
## 1552   11  23           Eder             Simon    AUT          1009.1     499.5
## 1553   12   5       Windisch           Dominik    ITA          1013.7     514.2
## 1554   13  43          Boehm            Daniel    GER          1002.2     496.9
## 1555   14   9        Beatrix    Jean Guillaume    FRA          1019.4     529.1
## 1556   15  44          Hofer             Lukas    ITA          1008.0     506.3
## 1557   16  42         Bailey            Lowell    USA          1007.1     498.9
## 1558   17  46          Iliev          Vladimir    BUL          1004.6     500.6
## 1559   18  20        Moravec            Ondrej    CZE          1018.1     493.7
## 1560   19  48         Soukup          Jaroslav    CZE          1012.1     508.2
## 1561   20  22       Slesingr            Michal    CZE          1025.1     525.8
## 1562   21  57        Otcenas            Martin    SVK          1014.4     514.0
## 1563   22  87   Bjoentegaard            Erlend    NOR          1027.7     521.7
## 1564   23  26     Lindstroem           Fredrik    SWE          1029.5     528.4
## 1565   24  28            Fak             Jakov    SLO          1020.7     529.0
## 1566   25   2          Smith            Nathan    CAN          1026.8     502.9
## 1567   26  24          Burke               Tim    USA          1033.6     537.1
## 1568   27  10          Weger          Benjamin    SUI          1034.4     498.8
## 1569   28  63      Desthieux             Simon    FRA          1036.7     532.5
## 1570   29  27       Malyshko            Dmitry    RUS          1029.7     529.6
## 1571   30  50   Christiansen    Vetle Sjaastad    NOR          1026.8     504.5
## 1572   31  19     Mesotitsch            Daniel    AUT          1040.9     509.3
## 1573   32  30           Anev          Krasimir    BUL          1015.3     513.0
## 1574   33  15         Lesser              Erik    GER          1032.5     527.5
## 1575   34  62          Green           Brendan    CAN          1054.7     527.4
## 1576   35  65         Krcmar            Michal    CZE          1037.4     522.0
## 1577   36  45         Dolder             Mario    SUI          1040.0     545.4
## 1578   37  85          Kuehn          Johannes    GER          1032.7     531.7
## 1579   38  25     Birnbacher           Andreas    GER          1042.1     540.9
## 1580   39  74       Chepelin          Vladimir    BLR          1034.1     528.9
## 1581   40  98         Joller              Ivan    SUI          1036.8     530.7
## 1582   41  33       Fourcade             Simon    FRA          1050.2     520.3
## 1583   42  31          Kazar             Matej    SVK          1046.8     509.6
## 1584   43  86     Grossegger              Sven    AUT          1045.4     523.6
## 1585   44  37             Os         Alexander    NOR          1041.3     521.6
## 1586   45   4        Lapshin           Timofei    RUS          1045.2     508.3
## 1587   46  58          Sloof              Joel    NED          1030.7     516.4
## 1588   46  64       Eberhard            Julian    AUT          1064.3     539.5
## 1589   48  49     Hiidensalo              Olli    FIN          1068.8     527.0
## 1590   49   1       Toivanen              Ahti    FIN          1044.1     537.6
## 1591   50  40     Pidruchnyi            Dmytro    UKR          1048.9     510.1
## 1592   51   3   Rastorgujevs           Andrejs    LAT          1070.3     520.6
## 1593   52  97         Claude           Florent    FRA          1053.3     539.0
## 1594   53  80       Nordgren              Leif    USA          1055.4     536.9
## 1595   54  61       Wiestner           Serafin    SUI          1063.7     520.7
## 1596   55  75        Armgren               Ted    SWE          1048.3     538.5
## 1597   56  29       Puchianu            Cornel    ROU          1064.3     557.2
## 1598   57  69           Koiv             Kauri    EST          1048.9     541.6
## 1599   58  94        Krupcik             Tomas    CZE          1052.0     538.9
## 1600   59  54          Guzik          Grzegorz    POL          1060.4     538.5
## 1601   60  18      Savitskiy               Yan    KAZ          1047.7     537.9
## 1602   61  13          Bauer            Klemen    SLO          1074.6     527.1
## 1603   62  41        Lessing            Roland    EST          1076.7     497.5
## 1604   63  32        Semenov            Sergii    UKR          1085.6     553.4
## 1605   64  79        Peiffer              Arnd    GER          1046.3     517.2
## 1606   65  17          Pryma             Artem    UKR          1092.3     563.7
## 1607   66  38       Arwidson            Tobias    SWE          1059.2     547.7
## 1608   67  35         Komatz             David    AUT          1095.0     516.2
## 1609   67  89     De Lorenzi         Christian    ITA          1061.1     539.0
## 1610   69 100      Tobreluts            Indrek    EST          1095.2     549.9
## 1611   70  81       Darozhka        Aliaksandr    BLR          1076.1     560.2
## 1612   71  70     Podkorytov          Vassiliy    KAZ          1067.3     538.7
## 1613   72  72         Perras             Scott    CAN          1109.9     580.8
## 1614   73  91    Budzilovich           Dzmitry    BLR          1075.1     547.5
## 1615   74  67        Zhyrnyi         Oleksandr    UKR          1087.9     572.4
## 1616   75 102       Matiasko          Miroslav    SVK          1097.2     547.9
## 1617   76  78       Eriksson        Christofer    SWE          1116.5     533.2
## 1618   77  90        Femling             Peppe    SWE          1091.6     532.2
## 1619   78  96         Hakala             Matti    FIN          1082.8     560.7
## 1620   79  93         Bedard        Marc Andre    CAN          1103.1     563.1
## 1621   80  36        Hasilla             Tomas    SVK          1110.1     547.9
## 1622   81  60           Buta            George    ROU          1103.6     580.4
## 1623   82 103       Szczurek            Lukasz    POL          1121.1     568.5
## 1624   83  51       Almoukov            Alexei    AUS          1109.0     528.6
## 1625   84  56       Kaukenas             Tomas    LTU          1111.8     571.3
## 1626   85  11         Liadov             Yuryi    BLR          1125.2     543.2
## 1627   86  95          Trsan               Rok    SLO          1139.1     592.0
## 1628   87  21       Kobonoki           Tsukasa    JPN          1114.0     596.0
## 1629   88  68          Maric             Janez    SLO          1133.6     567.2
## 1630   89  84     Tyshchenko             Artem    UKR          1125.7     582.3
## 1631   90  76       Partalov           Dimitar    BUL          1141.0     574.0
## 1632   91  77          Dutto            Pietro    ITA          1127.3     613.9
## 1633   92  59        Jackson         Lee-Steve    GBR          1110.6     564.1
## 1634   93  66      Patrijuks        Aleksandrs    LAT          1150.7     595.1
## 1635   94  82     Dombrovski             Karol    LTU          1147.7     552.6
## 1636   95 101        Currier           Russell    USA          1182.6     558.1
## 1637   96  55          Oblak            Lenart    SLO          1156.3     588.2
## 1638   97  88        Puzulis           Rolands    LAT          1152.9     561.1
## 1639   98  73   Lobo Escolar            Victor    ESP          1160.8     574.5
## 1640   99  92         Rastic             Damir    SRB          1190.4     633.5
## 1641  100  99          Braun             Maxim    KAZ          1155.6     619.2
## 1642  101  52         Hodzic              Edin    SRB          1157.0     604.2
## 1643  102  53       Crnkovic          Kresimir    CRO          1231.3     656.7
## 1644    1   3       Shipulin             Anton    RUS          1745.6     454.7
## 1645    2   2       Fourcade            Martin    FRA          1740.1     451.5
## 1646    3  21           Eder             Simon    AUT          1737.5     429.5
## 1647    4  14     Lindstroem           Fredrik    SWE          1744.7     437.8
## 1648    5  17        Beatrix    Jean Guillaume    FRA          1745.5     456.2
## 1649    6   9            Boe            Tarjei    NOR          1764.5     436.4
## 1650    7   7        Moravec            Ondrej    CZE          1757.2     435.4
## 1651    8   6            Fak             Jakov    SLO          1775.9     430.7
## 1652    9  30          Smith            Nathan    CAN          1774.8     454.4
## 1653   10  13     Birnbacher           Andreas    GER          1772.0     426.4
## 1654   11  25       Malyshko            Dmitry    RUS          1774.1     436.3
## 1655   12  23 Fillon Maillet           Quentin    FRA          1773.1     434.8
## 1656   13   4   Landertinger           Dominik    AUT          1798.4     465.5
## 1657   14  28   Bjoentegaard            Erlend    NOR          1798.7     438.1
## 1658   15  19       Tsvetkov             Maxim    RUS          1804.9     444.0
## 1659   16  12          Boehm            Daniel    GER          1780.5     443.0
## 1660   17   1       Svendsen        Emil Hegle    NOR          1798.1     446.9
## 1661   18  22           Anev          Krasimir    BUL          1785.5     471.4
## 1662   19  27       Windisch           Dominik    ITA          1815.0     437.7
## 1663   20   5        Schempp             Simon    GER          1820.2     447.1
## 1664   21  26          Hofer             Lukas    ITA          1813.6     485.2
## 1665   22  18         Bailey            Lowell    USA          1823.2     467.0
## 1666   23   8            Boe Johannes Thingnes    NOR          1846.5     496.0
## 1667   24  20          Weger          Benjamin    SUI          1853.3     443.1
## 1668   25  10     Garanichev           Evgeniy    RUS          1868.4     489.1
## 1669   26  29        Lapshin           Timofei    RUS          1878.2     481.1
## 1670   27  15          Burke               Tim    USA          1887.3     507.5
## 1671   28  24          Iliev          Vladimir    BUL          1886.8     506.7
## 1672   29  16       Slesingr            Michal    CZE          1911.1     458.7
## 1673   30  11         Lesser              Erik    GER          2098.0     509.4
## 1674    1   3       Svendsen        Emil Hegle    NOR          1505.4     369.2
## 1675    2   1       Shipulin             Anton    RUS          1530.8     373.6
## 1676    3   4       Fourcade            Martin    FRA          1551.8     382.4
## 1677    4   2   Landertinger           Dominik    AUT          1605.1     412.7
## 1678    5  18        Moravec            Ondrej    CZE          1597.3     376.6
## 1679    6  45        Lapshin           Timofei    RUS          1597.7     374.9
## 1680    7  14        Beatrix    Jean Guillaume    FRA          1610.6     400.2
## 1681    8  10            Boe Johannes Thingnes    NOR          1612.3     380.4
## 1682    9  27          Weger          Benjamin    SUI          1614.1     373.4
## 1683   10  15          Hofer             Lukas    ITA          1602.3     407.5
## 1684   11  24            Fak             Jakov    SLO          1618.1     396.1
## 1685   12  23     Lindstroem           Fredrik    SWE          1620.9     399.5
## 1686   13  37          Kuehn          Johannes    GER          1619.7     381.1
## 1687   14  22   Bjoentegaard            Erlend    NOR          1634.8     395.7
## 1688   15  35         Krcmar            Michal    CZE          1625.3     406.0
## 1689   16   5     Garanichev           Evgeniy    RUS          1624.7     381.7
## 1690   17   7            Boe            Tarjei    NOR          1632.0     377.9
## 1691   18  12       Windisch           Dominik    ITA          1633.1     425.6
## 1692   19   6        Schempp             Simon    GER          1625.6     408.5
## 1693   20  41       Fourcade             Simon    FRA          1625.2     381.1
## 1694   21  26          Burke               Tim    USA          1647.1     403.1
## 1695   22  25          Smith            Nathan    CAN          1642.0     424.7
## 1696   23  33         Lesser              Erik    GER          1647.8     379.8
## 1697   24  43     Grossegger              Sven    AUT          1643.0     381.8
## 1698   25  28      Desthieux             Simon    FRA          1648.0     407.5
## 1699   26  17          Iliev          Vladimir    BUL          1640.3     411.9
## 1700   27  44             Os         Alexander    NOR          1648.8     381.4
## 1701   28  13          Boehm            Daniel    GER          1636.5     405.8
## 1702   29  16         Bailey            Lowell    USA          1646.6     427.3
## 1703   30  31     Mesotitsch            Daniel    AUT          1645.4     405.8
## 1704   31  32           Anev          Krasimir    BUL          1653.2     387.7
## 1705   32  42          Kazar             Matej    SVK          1652.1     381.2
## 1706   33  34          Green           Brendan    CAN          1662.3     420.6
## 1707   34  29       Malyshko            Dmitry    RUS          1657.5     384.7
## 1708   35   9       Tsvetkov             Maxim    RUS          1671.5     420.5
## 1709   36  50     Pidruchnyi            Dmytro    UKR          1675.3     392.7
## 1710   37  20       Slesingr            Michal    CZE          1670.4     413.6
## 1711   38   8 Fillon Maillet           Quentin    FRA          1647.3     380.4
## 1712   39  30   Christiansen    Vetle Sjaastad    NOR          1666.9     417.0
## 1713   40  21        Otcenas            Martin    SVK          1679.4     399.4
## 1714   41  11           Eder             Simon    AUT          1688.2     435.2
## 1715   42  39       Chepelin          Vladimir    BLR          1707.7     416.0
## 1716   43  55        Armgren               Ted    SWE          1717.5     414.0
## 1717   44  40         Joller              Ivan    SUI          1717.7     414.4
## 1718   45  56       Puchianu            Cornel    ROU          1737.5     390.7
## 1719   46  47       Eberhard            Julian    AUT          1758.0     376.6
## 1720   47  52         Claude           Florent    FRA          1751.8     397.9
## 1721   48  19         Soukup          Jaroslav    CZE          1739.9     423.8
## 1722   49  36         Dolder             Mario    SUI          1747.9     422.1
## 1723   50  38     Birnbacher           Andreas    GER          1729.4     484.7
## 1724   51  53       Nordgren              Leif    USA          1743.1     398.1
## 1725   52  49       Toivanen              Ahti    FIN          1759.6     409.5
## 1726   53  58        Krupcik             Tomas    CZE          1758.7     425.4
## 1727   54  51   Rastorgujevs           Andrejs    LAT          1787.2     414.0
## 1728   55  60      Savitskiy               Yan    KAZ          1771.1     455.3
## 1729   56  48     Hiidensalo              Olli    FIN          1760.4     410.8
## 1730   57  59          Guzik          Grzegorz    POL          1844.4     464.9
## 1731   58  54       Wiestner           Serafin    SUI          1874.5     475.0
## 1732   59  46          Sloof              Joel    NED          1893.5     403.6
## 1733    1  25            Boe Johannes Thingnes    NOR           985.8     501.4
## 1734    2  71        Schempp             Simon    GER          1004.5     504.6
## 1735    3  37        Peiffer              Arnd    GER          1037.2     534.5
## 1736    4  11       Shipulin             Anton    RUS          1032.3     536.6
## 1737    5   7   Rastorgujevs           Andrejs    LAT          1037.0     511.3
## 1738    6  14           Doll          Benedikt    GER          1037.9     542.1
## 1739    7  76          Weger          Benjamin    SUI          1038.7     515.6
## 1740    8  62           Anev          Krasimir    BUL          1036.4     523.3
## 1741    9  97          Boehm            Daniel    GER          1022.6     522.6
## 1742   10  57       Slesingr            Michal    CZE          1047.4     517.9
## 1743   11  54             Os         Alexander    NOR          1055.8     555.1
## 1744   12  24       Svendsen        Emil Hegle    NOR          1038.8     519.5
## 1745   13  69        Moravec            Ondrej    CZE          1059.8     516.7
## 1746   14  21            Fak             Jakov    SLO          1046.6     538.8
## 1747   15  23    Bjoerndalen         Ole Einar    NOR          1052.4     555.4
## 1748   16  79          Green           Brendan    CAN          1047.9     523.5
## 1749   17  43          Iliev          Vladimir    BUL          1054.4     525.2
## 1750   18  88    L'Abee-Lund            Henrik    NOR          1054.5     543.4
## 1751   19  16   Bjoentegaard            Erlend    NOR          1071.0     522.4
## 1752   20  27         Liadov             Yuryi    BLR          1049.2     533.8
## 1753   21  30     Lindstroem           Fredrik    SWE          1064.4     527.2
## 1754   22  52       Fourcade             Simon    FRA          1068.9     541.4
## 1755   23  12     Garanichev           Evgeniy    RUS          1055.4     524.2
## 1756   24  70        Beatrix    Jean Guillaume    FRA          1052.6     540.5
## 1757   25  68         Lesser              Erik    GER          1041.5     544.8
## 1758   26  72       Fourcade            Martin    FRA          1057.5     536.2
## 1759   27  18            Gow             Scott    CAN          1071.2     546.3
## 1760   28  53       Chepelin          Vladimir    BLR          1063.9     562.3
## 1761   29  48     Tyshchenko             Artem    UKR          1056.9     536.3
## 1762   30  56           Eder             Simon    AUT          1071.3     522.9
## 1763   31  49         Soukup          Jaroslav    CZE          1094.2     592.8
## 1764   32   8        Zhyrnyi         Oleksandr    UKR          1066.0     560.1
## 1765   32  92      Desthieux             Simon    FRA          1068.4     551.6
## 1766   34  63       Windisch           Dominik    ITA          1080.6     560.9
## 1767   35  33          Smith            Nathan    CAN          1094.6     546.4
## 1768   36  51         Roesch           Michael    BEL          1080.7     543.0
## 1769   37  80 Fillon Maillet           Quentin    FRA          1074.2     545.2
## 1770   38 101       Malyshko            Dmitry    RUS          1074.1     552.0
## 1771   39  20        Lapshin           Timofei    RUS          1072.3     537.5
## 1772   40   9     De Lorenzi         Christian    ITA          1072.3     555.5
## 1773   41  65         Bailey            Lowell    USA          1084.4     561.5
## 1774   42  31       Wiestner           Serafin    SUI          1108.2     571.6
## 1775   43  59    Kilchytskyy           Vitaliy    UKR          1097.7     545.0
## 1776   44  93         Krcmar            Michal    CZE          1094.1     577.5
## 1777   45   5         Pinter         Friedrich    AUT          1098.1     595.2
## 1778   46  50        Babikov             Anton    RUS          1093.3     561.8
## 1779   47  85      Bormolini            Thomas    ITA          1081.5     561.0
## 1780   48   3      Yaliotnau             Raman    BLR          1109.1     568.5
## 1781   49  61   Landertinger           Dominik    AUT          1114.6     600.8
## 1782   50  44          Burke               Tim    USA          1112.0     597.7
## 1783   51   6       Arwidson            Tobias    SWE          1090.7     569.6
## 1784   52  81         Volkov            Alexey    RUS          1093.4     545.8
## 1785   53  75       Eriksson        Christofer    SWE          1104.1     563.1
## 1786   54  47     Grossegger              Sven    AUT          1102.4     547.9
## 1787   55  77        Otcenas            Martin    SVK          1095.5     575.1
## 1788   56   1       Puchianu            Cornel    ROU          1113.5     569.3
## 1789   57  98       Eberhard            Julian    AUT          1119.3     544.6
## 1790   58  39          Bauer            Klemen    SLO          1117.2     603.6
## 1791   59  94        Abasheu           Dzmitry    BLR          1090.3     561.5
## 1792   60  78      Plywaczyk         Krzysztof    POL          1091.9     558.3
## 1793   61  60      Kauppinen            Jarkko    FIN          1101.0     564.4
## 1794   62  73     Mesotitsch            Daniel    AUT          1112.0     572.0
## 1795   63  17           Koiv             Kauri    EST          1111.2     566.1
## 1796   64  36       Kaukenas             Tomas    LTU          1132.9     564.4
## 1797   65  38       Siemakov         Volodymyr    UKR          1116.1     594.2
## 1798   66  83         Pantov             Anton    KAZ          1116.4     579.2
## 1799   66  84          Sloof              Joel    NED          1105.9     567.7
## 1800   68  64     Birnbacher           Andreas    GER          1152.0     593.4
## 1801   69  46           Buta            George    ROU          1138.5     581.8
## 1802   70  40          Braun             Maxim    KAZ          1129.5     595.7
## 1803   71  41        Remmelg            Martin    EST          1135.4     609.6
## 1804   72   4         Cuenot           Gaspard    SUI          1143.4     620.3
## 1805   73  89        Rusinov            Dmytro    UKR          1137.3     576.7
## 1806   74  15       Matiasko          Miroslav    SVK          1142.8     611.3
## 1807   75  91         Dolder             Mario    SUI          1154.0     588.4
## 1808   76  82          Maric             Janez    SLO          1138.5     592.8
## 1809   77  42   Lobo Escolar            Victor    ESP          1159.6     589.9
## 1810   77  95          Guzik          Grzegorz    POL          1135.7     573.6
## 1811   79  22         Zlatev              Ivan    BUL          1130.2     610.7
## 1812   80 102        Doherty              Sean    USA          1122.4     584.9
## 1813   81  96            Gow         Christian    CAN          1124.0     567.7
## 1814   82  13          Jouty          Baptiste    FRA          1146.9     606.6
## 1815   83  35       Toivanen              Ahti    FIN          1160.4     558.3
## 1816   84  10          Trsan               Rok    SLO          1158.1     600.7
## 1817   85  90        Armgren               Ted    SWE          1159.8     605.3
## 1818   86  26          Kazar             Matej    SVK          1183.6     600.3
## 1819   87  86     Podkorytov          Vassiliy    KAZ          1152.5     596.3
## 1820   88  74       Laponder            Marcel    GBR          1153.4     590.7
## 1821   89  28          Hofer             Lukas    ITA          1189.8     563.5
## 1822   90  67       Almoukov            Alexei    AUS          1167.4     611.3
## 1823   91  55         Ermits             Kalev    EST          1185.7     605.4
## 1824   92 100         Hakala             Matti    FIN          1176.4     634.9
## 1825   93  99        Hasilla             Tomas    SVK          1178.2     639.9
## 1826   94  45        Inomata            Kazuya    JPN          1187.1     638.4
## 1827   95  34     Krsmanovic             Dejan    SRB          1200.5     595.9
## 1828   96  87           Dokl             Peter    SLO          1190.4     614.8
## 1829   97   2        Strolia          Vytautas    LTU          1220.8     635.6
## 1830   98  32           Kane             Kevin    GBR          1238.3     599.9
## 1831   99  58         Rastic             Damir    SRB          1322.5     602.9
## 1832    1   4        Schempp             Simon    GER          1752.9     440.8
## 1833    2  22 Fillon Maillet           Quentin    FRA          1754.1     440.4
## 1834    3   9       Slesingr            Michal    CZE          1758.3     440.9
## 1835    4   3       Svendsen        Emil Hegle    NOR          1755.4     429.6
## 1836    5  17    Bjoerndalen         Ole Einar    NOR          1760.5     430.3
## 1837    6   2       Shipulin             Anton    RUS          1774.6     458.5
## 1838    7  21        Beatrix    Jean Guillaume    FRA          1775.2     460.6
## 1839    8  10           Eder             Simon    AUT          1771.8     459.4
## 1840    9  26        Peiffer              Arnd    GER          1779.0     435.9
## 1841   10   6            Boe Johannes Thingnes    NOR          1767.7     438.2
## 1842   11  11     Garanichev           Evgeniy    RUS          1783.0     454.8
## 1843   12   7        Moravec            Ondrej    CZE          1781.6     455.4
## 1844   13  20        Lapshin           Timofei    RUS          1782.0     449.4
## 1845   14  12     Lindstroem           Fredrik    SWE          1790.9     446.9
## 1846   15  28             Os         Alexander    NOR          1809.8     463.6
## 1847   16  13     Birnbacher           Andreas    GER          1798.5     466.2
## 1848   17  24       Fourcade             Simon    FRA          1810.5     453.8
## 1849   18  29          Green           Brendan    CAN          1811.4     464.0
## 1850   19  30    L'Abee-Lund            Henrik    NOR          1819.4     482.3
## 1851   20  27           Doll          Benedikt    GER          1839.7     505.6
## 1852   21   1       Fourcade            Martin    FRA          1835.9     441.2
## 1853   22  16          Boehm            Daniel    GER          1819.1     502.1
## 1854   23  15         Lesser              Erik    GER          1836.6     493.8
## 1855   24   5            Fak             Jakov    SLO          1844.4     477.6
## 1856   25  18       Malyshko            Dmitry    RUS          1835.0     472.9
## 1857   26  14          Weger          Benjamin    SUI          1858.3     465.3
## 1858   27   8           Anev          Krasimir    BUL          1857.1     460.2
## 1859   28  25         Bailey            Lowell    USA          1875.8     479.5
## 1860   29  19   Rastorgujevs           Andrejs    LAT          1918.5     516.2
## 1861   30  23          Iliev          Vladimir    BUL          1918.9     502.1
## 1862    1  16        Schempp             Simon    GER           951.1     473.6
## 1863    2  45       Tsvetkov             Maxim    RUS           952.7     475.6
## 1864    3  28            Boe            Tarjei    NOR           963.6     485.4
## 1865    4  61        Beatrix    Jean Guillaume    FRA           957.0     478.7
## 1866    5  34       Shipulin             Anton    RUS           964.0     492.7
## 1867    6  13           Eder             Simon    AUT           956.7     485.8
## 1868    7   7           Anev          Krasimir    BUL           963.7     482.2
## 1869    8  48            Boe Johannes Thingnes    NOR           981.2     490.6
## 1870    9  21        Peiffer              Arnd    GER           969.1     483.4
## 1871   10  38       Fourcade             Simon    FRA           963.0     484.1
## 1872   11  29           Doll          Benedikt    GER           985.5     486.2
## 1873   12   6          Hofer             Lukas    ITA           977.2     505.8
## 1874   13   3   Landertinger           Dominik    AUT           990.1     496.8
## 1875   14  20         Slepov            Alexey    RUS           988.8     499.4
## 1876   15  27            Fak             Jakov    SLO           986.3     507.8
## 1877   16  70     De Lorenzi         Christian    ITA           977.6     494.3
## 1878   17  39          Burke               Tim    USA           990.2     509.0
## 1879   18  43     Garanichev           Evgeniy    RUS           994.3     494.7
## 1880   19  46       Windisch           Dominik    ITA           994.8     500.1
## 1881   20   2        Semenov            Sergii    UKR           984.4     504.6
## 1882   21  42         Krcmar            Michal    CZE           999.8     510.9
## 1883   22  53       Eberhard            Julian    AUT          1015.4     492.8
## 1884   23  14    Bjoerndalen         Ole Einar    NOR           996.5     480.4
## 1885   24  47          Kazar             Matej    SVK           995.4     512.1
## 1886   25  31        Zhyrnyi         Oleksandr    UKR          1000.4     512.8
## 1887   26  51    Kilchytskyy           Vitaliy    UKR          1002.3     495.8
## 1888   27  22       Svendsen        Emil Hegle    NOR          1013.2     542.0
## 1889   28  24       Fourcade            Martin    FRA          1006.9     497.2
## 1890   29  37          Iliev          Vladimir    BUL          1008.2     524.2
## 1891   30  35         Soukup          Jaroslav    CZE          1004.7     498.9
## 1892   31 106        Babikov             Anton    RUS           995.0     510.5
## 1893   32  18         Bailey            Lowell    USA          1007.4     524.7
## 1894   32  85          Pryma             Artem    UKR          1007.8     507.7
## 1895   34   5          Weger          Benjamin    SUI          1023.6     503.6
## 1896   34  59         Lesser              Erik    GER          1027.8     505.1
## 1897   36  10   Rastorgujevs           Andrejs    LAT          1009.2     532.9
## 1898   37  12       Slesingr            Michal    CZE          1012.7     528.6
## 1899   38  60        Krupcik             Tomas    CZE          1011.5     527.6
## 1900   39  30       Chepelin          Vladimir    BLR          1026.5     513.1
## 1901   40  41       Wiestner           Serafin    SUI          1028.1     532.0
## 1902   41  23     Birnbacher           Andreas    GER          1013.5     486.4
## 1903   42  82    L'Abee-Lund            Henrik    NOR          1006.6     507.5
## 1904   43  80       Nordgren              Leif    USA          1008.7     519.7
## 1905   44  17     Pidruchnyi            Dmytro    UKR          1016.7     513.4
## 1906   45  11          Green           Brendan    CAN          1027.5     515.9
## 1907   46  83      Guigonnat           Antonin    FRA          1029.8     534.6
## 1908   47  15      Yaliotnau             Raman    BLR          1028.5     535.3
## 1909   48  50        Dyuzhev           Dmitriy    BLR          1033.0     515.0
## 1910   49  94        Doherty              Sean    USA          1010.4     505.3
## 1911   50  79     Dombrovski             Karol    LTU          1018.7     533.7
## 1912   51   8      Desthieux             Simon    FRA          1032.7     523.9
## 1913   52  25         Zahkna              Rene    EST          1023.1     527.0
## 1914   52  68     Podkorytov          Vassiliy    KAZ          1019.8     525.8
## 1915   54   9        Moravec            Ondrej    CZE          1052.8     492.8
## 1916   55 101       Vaclavik              Adam    CZE          1039.1     500.1
## 1917   56   1 Fillon Maillet           Quentin    FRA          1034.6     512.8
## 1918   57  77        Armgren               Ted    SWE          1018.7     524.2
## 1919   58  19          Smith            Nathan    CAN          1039.8     514.1
## 1920   58  49     Grossegger              Sven    AUT          1031.8     501.0
## 1921   60  95          Oblak            Lenart    SLO          1020.4     516.7
## 1922   61  87         Pantov             Anton    KAZ          1033.7     532.7
## 1923   62  26          Nelin            Jesper    SWE          1043.4     507.1
## 1924   63  64         Roesch           Michael    BEL          1030.8     539.6
## 1925   64  55        Hasilla             Tomas    SVK          1032.1     529.9
## 1926   65  86         Komatz             David    AUT          1044.5     518.6
## 1927   66  40      Savitskiy               Yan    KAZ          1035.5     542.2
## 1928   67  33   Bjoentegaard            Erlend    NOR          1066.2     541.5
## 1929   68  74       Szczurek            Lukasz    POL          1035.1     519.0
## 1930   69  36         Davies              Macx    CAN          1052.5     531.0
## 1931   70 100          Kuehn          Johannes    GER          1077.5     575.5
## 1932   71  91        Lessing            Roland    EST          1054.5     532.1
## 1933   72  67     Kletcherov           Michail    BUL          1062.1     534.4
## 1934   73  44           Buta            George    ROU          1040.5     540.3
## 1935   74  66          Trsan               Rok    SLO          1048.8     531.5
## 1936   75   4        Otcenas            Martin    SVK          1058.6     555.1
## 1937   76  93       Matiasko          Miroslav    SVK          1054.0     556.1
## 1938   77  71         Volkov            Alexey    RUS          1067.6     557.2
## 1939   78  69         Dolder             Mario    SUI          1063.3     548.2
## 1940   79  81        Strolia          Vytautas    LTU          1062.7     524.6
## 1941   80  89         Jaeger            Martin    SUI          1066.5     553.8
## 1942   81  76       Puchianu            Cornel    ROU          1060.9     552.2
## 1943   82  75         Dovzan              Miha    SLO          1050.8     517.7
## 1944   83 105     Hallstroem             Simon    SWE          1048.6     521.9
## 1945   84  88           Faur             Remus    ROU          1042.5     520.1
## 1946   85  72         Ermits             Kalev    EST          1064.7     514.9
## 1947   86  97            Gow         Christian    CAN          1054.5     539.6
## 1948   87  52        Finello            Jeremy    SUI          1057.4     517.9
## 1949   88  63        Gronman            Tuomas    FIN          1049.6     544.5
## 1950   89  32      Stenersen          Torstein    SWE          1093.1     561.7
## 1951   90  62          Guzik          Grzegorz    POL          1077.5     549.5
## 1952   91 102     Gerdzhikov           Dimitar    BUL          1066.2     514.6
## 1953   92  78           Koiv             Kauri    EST          1072.9     535.6
## 1954   93  99       Toivanen              Ahti    FIN          1073.0     557.8
## 1955   94  57            Gow             Scott    CAN          1102.7     553.8
## 1956   95 103      Plywaczyk         Krzysztof    POL          1076.4     545.3
## 1957   96  90       Montello          Giuseppe    ITA          1087.2     548.9
## 1958   97 104          Nagai             Junji    JPN          1073.7     554.4
## 1959   98  96       Kaukenas             Tomas    LTU          1106.5     591.0
## 1960   99  84    Bocharnikov            Sergey    BLR          1120.4     571.5
## 1961  100  73         Orpana              Sami    FIN          1094.9     575.9
## 1962  101  58        Deksnis             Ingus    LAT          1102.7     561.5
## 1963  102  54      Tachizaki            Mikito    JPN          1105.5     548.0
## 1964  103  92           Lusa          Daumants    LAT          1101.8     542.7
## 1965  104  98       Laponder            Marcel    GBR          1115.0     587.3
## 1966  105  56            Kim           Jongmin    KOR          1138.0     589.7
## 1967  106  65          Dixon             Scott    GBR          1164.4     574.6
## 1968    1   5       Shipulin             Anton    RUS          1569.6     403.6
## 1969    2   1        Schempp             Simon    GER          1576.3     415.3
## 1970    3   8            Boe Johannes Thingnes    NOR          1588.0     388.3
## 1971    4  28       Fourcade            Martin    FRA          1589.1     380.1
## 1972    5   9        Peiffer              Arnd    GER          1607.6     392.5
## 1973    6   6           Eder             Simon    AUT          1597.9     419.6
## 1974    7  31        Babikov             Anton    RUS          1613.9     381.7
## 1975    8   3            Boe            Tarjei    NOR          1614.2     418.6
## 1976    9  13   Landertinger           Dominik    AUT          1630.1     387.4
## 1977   10  18     Garanichev           Evgeniy    RUS          1634.8     404.5
## 1978   11   2       Tsvetkov             Maxim    RUS          1631.2     382.5
## 1979   12  27       Svendsen        Emil Hegle    NOR          1633.6     396.7
## 1980   13  21         Krcmar            Michal    CZE          1635.9     392.3
## 1981   14  41     Birnbacher           Andreas    GER          1636.5     392.6
## 1982   15  15            Fak             Jakov    SLO          1651.2     416.3
## 1983   16  34          Weger          Benjamin    SUI          1650.8     407.8
## 1984   17   7           Anev          Krasimir    BUL          1650.4     436.4
## 1985   18  35         Lesser              Erik    GER          1665.0     412.9
## 1986   19  20        Semenov            Sergii    UKR          1665.4     415.8
## 1987   20  14         Slepov            Alexey    RUS          1680.0     382.2
## 1988   21  36   Rastorgujevs           Andrejs    LAT          1693.1     430.6
## 1989   22  17          Burke               Tim    USA          1686.0     412.9
## 1990   23  11           Doll          Benedikt    GER          1702.9     423.7
## 1991   24  25        Zhyrnyi         Oleksandr    UKR          1693.7     399.5
## 1992   25  38        Krupcik             Tomas    CZE          1694.0     431.1
## 1993   26  22       Eberhard            Julian    AUT          1698.3     402.5
## 1994   27  19       Windisch           Dominik    ITA          1692.9     454.8
## 1995   28  32         Bailey            Lowell    USA          1703.3     416.1
## 1996   29  24          Kazar             Matej    SVK          1700.6     415.7
## 1997   30  23    Bjoerndalen         Ole Einar    NOR          1696.4     409.6
## 1998   31  45          Green           Brendan    CAN          1683.7     417.3
## 1999   32  37       Slesingr            Michal    CZE          1702.2     396.9
## 2000   33  29          Iliev          Vladimir    BUL          1707.2     435.6
## 2001   34  12          Hofer             Lukas    ITA          1706.8     446.6
## 2002   35  39       Chepelin          Vladimir    BLR          1718.2     403.4
## 2003   36  33          Pryma             Artem    UKR          1713.6     414.9
## 2004   37  40       Wiestner           Serafin    SUI          1729.2     446.2
## 2005   38  30         Soukup          Jaroslav    CZE          1732.8     398.0
## 2006   39  26    Kilchytskyy           Vitaliy    UKR          1730.3     404.6
## 2007   40  52         Zahkna              Rene    EST          1737.7     421.8
## 2008   41  42    L'Abee-Lund            Henrik    NOR          1740.0     421.2
## 2009   42  48        Dyuzhev           Dmitriy    BLR          1747.8     397.7
## 2010   43  58          Smith            Nathan    CAN          1755.4     413.9
## 2011   44  16     De Lorenzi         Christian    ITA          1745.5     426.1
## 2012   45  46      Guigonnat           Antonin    FRA          1769.3     434.8
## 2013   46  54        Moravec            Ondrej    CZE          1772.6     412.4
## 2014   47  50     Dombrovski             Karol    LTU          1770.4     416.7
## 2015   48  43       Nordgren              Leif    USA          1754.9     414.2
## 2016   49  55       Vaclavik              Adam    CZE          1801.3     423.6
## 2017   50  53     Podkorytov          Vassiliy    KAZ          1892.1     450.9
## 2018   51  60          Oblak            Lenart    SLO          1918.4     454.0
## 2019   52  57        Armgren               Ted    SWE          1933.9     492.3
## 2020    1   6       Fourcade            Martin    FRA           993.9     487.0
## 2021    2   7       Shipulin             Anton    RUS          1000.2     497.5
## 2022    3   4        Schempp             Simon    GER          1004.9     497.1
## 2023    4  36       Eberhard            Julian    AUT          1041.0     519.0
## 2024    5  14   Landertinger           Dominik    AUT          1036.0     528.9
## 2025    6   1           Eder             Simon    AUT          1018.8     512.5
## 2026    7  27       Fourcade             Simon    FRA          1021.2     510.6
## 2027    8  29       Windisch           Dominik    ITA          1038.8     504.5
## 2028    9  28             Os         Alexander    NOR          1031.7     513.4
## 2029   10   2     Garanichev           Evgeniy    RUS          1034.5     522.2
## 2030   11  39        Peiffer              Arnd    GER          1028.7     519.1
## 2031   12  44         Lesser              Erik    GER          1043.7     530.7
## 2032   13   9        Semenov            Sergii    UKR          1049.0     512.6
## 2033   14   5       Slesingr            Michal    CZE          1049.0     530.0
## 2034   15   8          Kazar             Matej    SVK          1056.7     532.9
## 2035   16  15   Rastorgujevs           Andrejs    LAT          1044.2     535.4
## 2036   17  48          Pryma             Artem    UKR          1060.2     520.3
## 2037   18  17          Hofer             Lukas    ITA          1068.0     564.2
## 2038   19  60        Varabei            Maksim    BLR          1053.1     529.0
## 2039   20  13       Tsvetkov             Maxim    RUS          1053.6     521.6
## 2040   21  18       Darozhka        Aliaksandr    BLR          1070.2     549.3
## 2041   22  43         Volkov            Alexey    RUS          1058.6     522.2
## 2042   23  20          Burke               Tim    USA          1072.6     554.8
## 2043   24  38         Bailey            Lowell    USA          1072.9     556.3
## 2044   25  31         Davies              Macx    CAN          1068.9     537.2
## 2045   26  49       Nordgren              Leif    USA          1070.6     522.0
## 2046   27  41     Grossegger              Sven    AUT          1068.5     538.9
## 2047   28  10           Doll          Benedikt    GER          1078.1     524.0
## 2048   29  59        Abasheu           Dzmitry    BLR          1076.8     547.1
## 2049   30  30        Zhyrnyi         Oleksandr    UKR          1065.2     523.7
## 2050   31  22          Smith            Nathan    CAN          1061.7     521.8
## 2051   32  25    Kilchytskyy           Vitaliy    UKR          1070.2     524.8
## 2052   33  52         Dolder             Mario    SUI          1079.5     538.8
## 2053   34  66            Gow             Scott    CAN          1074.8     527.7
## 2054   35  74      Bormolini            Thomas    ITA          1064.9     539.5
## 2055   36  45   Christiansen    Vetle Sjaastad    NOR          1070.7     540.0
## 2056   37  50         Krcmar            Michal    CZE          1084.8     546.7
## 2057   38  79         Waeger            Lorenz    AUT          1077.3     545.4
## 2058   39  63        Beatrix    Jean Guillaume    FRA          1086.3     556.7
## 2059   40  16          Green           Brendan    CAN          1085.1     550.8
## 2060   41  34       Malyshko            Dmitry    RUS          1090.8     558.8
## 2061   42  73      Bogetveit   Haavard Gutuboe    NOR          1086.7     551.3
## 2062   43  23      Desthieux             Simon    FRA          1094.4     549.8
## 2063   44  24      Birkeland        Lars Helge    NOR          1076.3     541.9
## 2064   45  21 Fillon Maillet           Quentin    FRA          1108.9     552.2
## 2065   46  75         Slepov            Alexey    RUS          1113.7     571.7
## 2066   47  26       Wiestner           Serafin    SUI          1115.0     547.4
## 2067   48  89          Boehm            Daniel    GER          1094.3     550.5
## 2068   49  84        Krupcik             Tomas    CZE          1082.2     551.4
## 2069   50   3    L'Abee-Lund            Henrik    NOR          1100.7     569.1
## 2070   51  32        Moravec            Ondrej    CZE          1085.3     556.4
## 2071   52  42           Faur             Remus    ROU          1102.6     557.3
## 2072   53  70         Kryuko            Viktar    BLR          1110.9     562.9
## 2073   54  11          Weger          Benjamin    SUI          1089.8     558.2
## 2074   55  67          Guzik          Grzegorz    POL          1107.9     528.5
## 2075   56  12          Bauer            Klemen    SLO          1126.1     565.4
## 2076   57  64     De Lorenzi         Christian    ITA          1099.6     562.3
## 2077   58  62        Armgren               Ted    SWE          1119.6     589.2
## 2078   59  35      Stenersen          Torstein    SWE          1088.4     560.0
## 2079   60  88      Tachizaki            Mikito    JPN          1103.3     536.8
## 2080   61  68            Gow         Christian    CAN          1102.9     556.6
## 2081   62  54          Trsan               Rok    SLO          1132.8     548.6
## 2082   63  33       Matiasko          Miroslav    SVK          1126.4     590.6
## 2083   64  86         Pantov             Anton    KAZ          1135.3     541.0
## 2084   65  61         Ermits             Kalev    EST          1124.7     546.9
## 2085   66  47         Jaeger            Martin    SUI          1149.0     614.3
## 2086   67  37          Braun             Maxim    KAZ          1128.3     561.0
## 2087   68  83       Arwidson            Tobias    SWE          1125.9     561.1
## 2088   69  78         Dovzan              Miha    SLO          1140.4     554.1
## 2089   70  53        Gronman            Tuomas    FIN          1143.6     595.3
## 2090   71  69       Szczurek            Lukasz    POL          1131.4     578.9
## 2091   72  40     Podkorytov          Vassiliy    KAZ          1152.3     569.4
## 2092   73  65        Strolia          Vytautas    LTU          1162.6     573.3
## 2093   74  56          Nagai             Junji    JPN          1156.0     598.9
## 2094   75  55       Puchianu            Cornel    ROU          1193.2     580.6
## 2095   76  57           Sima            Michal    SVK          1160.6     572.9
## 2096   77  72       Kubaliak            Michal    SVK          1150.6     585.8
## 2097   78  76            Pop          Gheorghe    ROU          1159.2     606.8
## 2098   79  58       Toivanen              Ahti    FIN          1199.8     621.9
## 2099   80  77         Treier               Jan    EST          1172.0     594.2
## 2100   81  85    Suslavicius             Rokas    LTU          1187.2     598.4
## 2101   82  19         Zahkna              Rene    EST          1176.0     618.2
## 2102   83  81         Hakala             Matti    FIN          1177.6     582.4
## 2103   84  80       Durtschi               Max    USA          1243.2     643.4
## 2104   85  46       Laponder            Marcel    GBR          1207.7     584.8
## 2105   86  51            Kim           Jongmin    KOR          1237.4     644.4
## 2106   87  82          Dixon             Scott    GBR          1313.7     665.6
## 2107    1  26       Windisch           Dominik    ITA          2026.3     502.3
## 2108    2   8           Doll          Benedikt    GER          2032.7     509.3
## 2109    3   6 Fillon Maillet           Quentin    FRA          2012.0     508.0
## 2110    4   9   Landertinger           Dominik    AUT          2035.8     516.7
## 2111    5  25   Rastorgujevs           Andrejs    LAT          2025.9     510.7
## 2112    6   1       Fourcade            Martin    FRA          2038.3     496.1
## 2113    7  20          Burke               Tim    USA          2037.6     516.1
## 2114    8  10        Peiffer              Arnd    GER          2036.5     513.8
## 2115    9  11        Moravec            Ondrej    CZE          2037.4     503.2
## 2116   10  29          Kazar             Matej    SVK          2035.0     509.1
## 2117   11  18        Beatrix    Jean Guillaume    FRA          2059.2     495.3
## 2118   12  28        Semenov            Sergii    UKR          2057.3     531.5
## 2119   13  30          Pryma             Artem    UKR          2050.5     515.7
## 2120   14   5           Eder             Simon    AUT          2051.3     521.2
## 2121   15   4     Garanichev           Evgeniy    RUS          2069.1     527.2
## 2122   16  14          Smith            Nathan    CAN          2054.0     523.5
## 2123   17   2       Shipulin             Anton    RUS          2083.1     535.0
## 2124   18  12       Fourcade             Simon    FRA          2083.5     520.0
## 2125   19  13      Desthieux             Simon    FRA          2080.0     503.3
## 2126   20  16         Bailey            Lowell    USA          2109.7     532.0
## 2127   21   3        Schempp             Simon    GER          2128.1     544.2
## 2128   22  21         Slepov            Alexey    RUS          2135.7     494.6
## 2129   23  23     Grossegger              Sven    AUT          2113.8     536.7
## 2130   24  27             Os         Alexander    NOR          2125.4     536.0
## 2131   25  19         Krcmar            Michal    CZE          2147.4     551.2
## 2132   26  17       Eberhard            Julian    AUT          2147.0     535.0
## 2133   27  24       Malyshko            Dmitry    RUS          2148.3     514.0
## 2134   28  15         Lesser              Erik    GER          2180.2     573.7
## 2135   29   7       Tsvetkov             Maxim    RUS          2197.1     530.9
## 2136   30  22       Slesingr            Michal    CZE          2204.3     563.7
## 2137    1   4        Schempp             Simon    GER           997.6     508.1
## 2138    2  22       Fourcade            Martin    FRA          1003.5     494.9
## 2139    3 101            Boe            Tarjei    NOR          1003.2     505.5
## 2140    4  23       Shipulin             Anton    RUS          1001.7     498.7
## 2141    5  34       Malyshko            Dmitry    RUS          1009.7     512.0
## 2142    6  14     Garanichev           Evgeniy    RUS          1007.2     506.9
## 2143    7  65       Eberhard            Julian    AUT          1028.4     532.5
## 2144    8  46           Doll          Benedikt    GER          1026.7     532.8
## 2145    9  28      Desthieux             Simon    FRA          1015.8     522.9
## 2146   10   3       Svendsen        Emil Hegle    NOR          1027.1     505.5
## 2147   11  21           Eder             Simon    AUT          1019.4     517.4
## 2148   12  48         Bailey            Lowell    USA          1016.8     515.7
## 2149   13  39   Landertinger           Dominik    AUT          1023.8     534.1
## 2150   14  12            Boe Johannes Thingnes    NOR          1029.0     530.3
## 2151   15  32     Lindstroem           Fredrik    SWE          1026.9     522.5
## 2152   16  10    Bjoerndalen         Ole Einar    NOR          1024.4     531.8
## 2153   17  36           Anev          Krasimir    BUL          1019.6     516.9
## 2154   18  15          Smith            Nathan    CAN          1024.9     530.6
## 2155   19  33 Fillon Maillet           Quentin    FRA          1037.1     512.7
## 2156   20   7        Semenov            Sergii    UKR          1031.0     512.9
## 2157   21  19     Birnbacher           Andreas    GER          1041.2     516.7
## 2158   22  52            Fak             Jakov    SLO          1047.0     530.5
## 2159   23  78          Hofer             Lukas    ITA          1041.3     541.6
## 2160   24  35        Moravec            Ondrej    CZE          1045.7     518.8
## 2161   25  74        Doherty              Sean    USA          1049.1     532.7
## 2162   26   9     Pidruchnyi            Dmytro    UKR          1059.3     558.2
## 2163   27  69        Beatrix    Jean Guillaume    FRA          1053.7     555.3
## 2164   28  38     De Lorenzi         Christian    ITA          1044.2     546.2
## 2165   29  55       Tsvetkov             Maxim    RUS          1054.8     523.5
## 2166   30   2          Burke               Tim    USA          1068.2     551.8
## 2167   31  44          Kazar             Matej    SVK          1048.3     534.9
## 2168   32  27          Bauer            Klemen    SLO          1063.9     564.8
## 2169   33  73            Gow             Scott    CAN          1053.1     537.6
## 2170   34  97        Lapshin           Timofei    RUS          1061.9     542.9
## 2171   35  31          Green           Brendan    CAN          1068.6     540.4
## 2172   36  11   Rastorgujevs           Andrejs    LAT          1054.1     559.2
## 2173   37  49        Otcenas            Martin    SVK          1072.7     571.1
## 2174   38  42         Slepov            Alexey    RUS          1075.5     523.8
## 2175   39   5     Grossegger              Sven    AUT          1060.3     547.0
## 2176   40  17          Weger          Benjamin    SUI          1076.4     557.8
## 2177   41  93         Jaeger            Martin    SUI          1072.0     568.0
## 2178   42   1       Windisch           Dominik    ITA          1081.1     537.4
## 2179   43  95         Lesser              Erik    GER          1063.0     571.2
## 2180   44  68       Puchianu            Cornel    ROU          1086.9     546.2
## 2181   45  92         Soukup          Jaroslav    CZE          1076.1     568.6
## 2182   46  41          Boehm            Daniel    GER          1066.8     558.1
## 2183   47  20        Dyuzhev           Dmitriy    BLR          1065.2     547.8
## 2184   48  96      Birkeland        Lars Helge    NOR          1063.2     534.8
## 2185   49  89           Faur             Remus    ROU          1079.3     559.6
## 2186   50 102     Mesotitsch            Daniel    AUT          1075.1     551.9
## 2187   51 106          Janik           Mateusz    POL          1070.9     530.1
## 2188   52  47           Buta            George    ROU          1073.9     558.7
## 2189   53  43          Braun             Maxim    KAZ          1070.9     540.1
## 2190   54  91         Ermits             Kalev    EST          1084.1     556.4
## 2191   55 105       Nordgren              Leif    USA          1069.0     570.3
## 2192   56  30          Pryma             Artem    UKR          1104.8     544.8
## 2193   57  79           Koiv             Kauri    EST          1074.7     537.8
## 2194   58  76         Bischl          Matthias    GER          1096.5     571.0
## 2195   59  90            Gow         Christian    CAN          1082.0     540.7
## 2196   60  61        Armgren               Ted    SWE          1077.6     561.2
## 2197   61  53        Krupcik             Tomas    CZE          1102.7     569.7
## 2198   62  70         Roesch           Michael    BEL          1092.5     562.0
## 2199   63  56        Zhyrnyi         Oleksandr    UKR          1106.0     550.4
## 2200   64  24       Kaukenas             Tomas    LTU          1100.8     575.1
## 2201   65  18          Nelin            Jesper    SWE          1100.8     568.9
## 2202   66  26       Fourcade             Simon    FRA          1100.7     546.9
## 2203   67  62          Guzik          Grzegorz    POL          1095.3     579.7
## 2204   68  54         Liadov             Yuryi    BLR          1104.3     562.4
## 2205   69  57        Finello            Jeremy    SUI          1105.0     558.9
## 2206   70  40    L'Abee-Lund            Henrik    NOR          1101.5     599.1
## 2207   71  88       Siemakov         Volodymyr    UKR          1101.1     567.1
## 2208   72  29       Slesingr            Michal    CZE          1116.5     593.5
## 2209   73 107     Gerdzhikov           Dimitar    BUL          1094.3     534.1
## 2210   74  71     Hiidensalo              Olli    FIN          1105.4     576.0
## 2211   75 108      Guigonnat           Antonin    FRA          1108.8     574.3
## 2212   76   6          Iliev          Vladimir    BUL          1133.7     586.1
## 2213   77  37      Yaliotnau             Raman    BLR          1129.1     595.9
## 2214   78  59      Tachizaki            Mikito    JPN          1118.9     585.9
## 2215   79  94       Chepelin          Vladimir    BLR          1124.4     589.0
## 2216   80  51        Lessing            Roland    EST          1108.6     573.4
## 2217   81  67        Gronman            Tuomas    FIN          1109.9     595.7
## 2218   82  98       Kobonoki           Tsukasa    JPN          1114.8     563.5
## 2219   83  80     Dombrovski             Karol    LTU          1128.8     600.0
## 2220   84  58        Sinapov             Anton    BUL          1131.7     588.4
## 2221   85  45       Wiestner           Serafin    SUI          1143.3     571.5
## 2222   86 104      Bormolini            Thomas    ITA          1133.7     584.6
## 2223   87  16      Savitskiy               Yan    KAZ          1126.4     548.0
## 2224   88   8        Hasilla             Tomas    SVK          1121.7     612.1
## 2225   89  13         Krcmar            Michal    CZE          1144.5     559.4
## 2226   90  66     Podkorytov          Vassiliy    KAZ          1143.0     553.7
## 2227   91  99         Joller              Ivan    SUI          1132.4     587.2
## 2228   92  85        Remmelg            Martin    EST          1125.4     605.5
## 2229   93  25         Davies              Macx    CAN          1150.1     609.6
## 2230   94  82          Dixon             Scott    GBR          1128.5     586.2
## 2231   95  50       Laponder            Marcel    GBR          1127.2     572.7
## 2232   96  86       Matiasko          Miroslav    SVK          1150.6     592.9
## 2233   97  87        Strolia          Vytautas    LTU          1160.7     605.0
## 2234   98 100          Oblak            Lenart    SLO          1135.8     577.8
## 2235   99  81         Dovzan              Miha    SLO          1163.1     610.7
## 2236  100  72       Szczurek            Lukasz    POL          1147.4     573.8
## 2237  101  84         Hakala             Matti    FIN          1147.9     586.8
## 2238  102  77        Slotins           Roberts    LAT          1144.7     595.9
## 2239  103  64          Trsan               Rok    SLO          1178.2     578.5
## 2240  104  83        Femling             Peppe    SWE          1148.3     607.2
## 2241  105  75         Rastic             Damir    SRB          1181.9     653.7
## 2242  106 103        Deksnis             Ingus    LAT          1189.6     636.3
## 2243  107  63            Kim           Jongmin    KOR          1219.1     581.6
## 2244  108  60         Morton             Damon    AUS          1344.2     686.6
## 2245    1   2       Fourcade            Martin    FRA          1557.1     379.0
## 2246    2   1        Schempp             Simon    GER          1561.0     388.4
## 2247    3   4       Shipulin             Anton    RUS          1569.8     382.1
## 2248    4   3            Boe            Tarjei    NOR          1582.2     403.4
## 2249    5  13   Landertinger           Dominik    AUT          1589.9     383.6
## 2250    6  16    Bjoerndalen         Ole Einar    NOR          1607.2     408.7
## 2251    7  10       Svendsen        Emil Hegle    NOR          1612.8     412.5
## 2252    8  19 Fillon Maillet           Quentin    FRA          1612.0     383.0
## 2253    9  21     Birnbacher           Andreas    GER          1612.9     397.6
## 2254   10  22            Fak             Jakov    SLO          1623.3     406.3
## 2255   11  29       Tsvetkov             Maxim    RUS          1628.8     391.2
## 2256   12  11           Eder             Simon    AUT          1628.3     431.1
## 2257   13  12         Bailey            Lowell    USA          1621.7     395.1
## 2258   14   6     Garanichev           Evgeniy    RUS          1638.7     413.1
## 2259   15  20        Semenov            Sergii    UKR          1632.3     391.5
## 2260   16   5       Malyshko            Dmitry    RUS          1636.9     409.5
## 2261   17  15     Lindstroem           Fredrik    SWE          1658.4     419.6
## 2262   18  18          Smith            Nathan    CAN          1656.6     427.2
## 2263   19   8           Doll          Benedikt    GER          1668.5     440.2
## 2264   20  24        Moravec            Ondrej    CZE          1667.9     394.1
## 2265   21  23          Hofer             Lukas    ITA          1649.9     400.0
## 2266   22   9      Desthieux             Simon    FRA          1665.4     401.3
## 2267   23  14            Boe Johannes Thingnes    NOR          1675.9     431.8
## 2268   24  40          Weger          Benjamin    SUI          1680.1     392.1
## 2269   25  43         Lesser              Erik    GER          1678.7     400.0
## 2270   26  36   Rastorgujevs           Andrejs    LAT          1691.8     430.5
## 2271   27  30          Burke               Tim    USA          1701.0     437.6
## 2272   28  27        Beatrix    Jean Guillaume    FRA          1706.6     394.2
## 2273   29  38         Slepov            Alexey    RUS          1717.9     407.7
## 2274   30   7       Eberhard            Julian    AUT          1731.0     472.2
## 2275   31  39     Grossegger              Sven    AUT          1744.1     442.7
## 2276   32  32          Bauer            Klemen    SLO          1740.8     442.5
## 2277   33  28     De Lorenzi         Christian    ITA          1728.1     418.4
## 2278   34  35          Green           Brendan    CAN          1747.8     403.0
## 2279   35  25        Doherty              Sean    USA          1750.0     438.8
## 2280   36  37        Otcenas            Martin    SVK          1754.8     402.3
## 2281   37  17           Anev          Krasimir    BUL          1749.1     450.3
## 2282   38  56          Pryma             Artem    UKR          1768.0     418.2
## 2283   39  59            Gow         Christian    CAN          1767.5     407.7
## 2284   40  45         Soukup          Jaroslav    CZE          1766.3     417.4
## 2285   41  34        Lapshin           Timofei    RUS          1770.5     434.7
## 2286   42  49           Faur             Remus    ROU          1763.1     412.7
## 2287   43  42       Windisch           Dominik    ITA          1786.5     437.2
## 2288   44  26     Pidruchnyi            Dmytro    UKR          1776.0     457.8
## 2289   45  33            Gow             Scott    CAN          1805.0     404.9
## 2290   46  54         Ermits             Kalev    EST          1803.7     409.4
## 2291   47  50     Mesotitsch            Daniel    AUT          1795.4     427.1
## 2292   48  47        Dyuzhev           Dmitriy    BLR          1820.8     453.0
## 2293   49  58         Bischl          Matthias    GER          1812.1     452.7
## 2294   50  41         Jaeger            Martin    SUI          1812.5     431.5
## 2295   51  52           Buta            George    ROU          1834.4     433.8
## 2296   52  55       Nordgren              Leif    USA          1822.7     432.3
## 2297   53  31          Kazar             Matej    SVK          1858.2     432.7
## 2298   54  57           Koiv             Kauri    EST          1843.8     487.6
## 2299   55  46          Boehm            Daniel    GER          1890.2     449.6
## 2300   56  53          Braun             Maxim    KAZ          1895.3     475.1
## 2301   57  60        Armgren               Ted    SWE          1904.3     441.0
## 2302   58  51          Janik           Mateusz    POL          1918.6     454.2
## 2303   59  44       Puchianu            Cornel    ROU          2017.5     508.8
## 2304    1  40       Eberhard            Julian    AUT          1012.9     514.6
## 2305    2  21        Schempp             Simon    GER          1014.8     504.6
## 2306    3  13        Peiffer              Arnd    GER          1030.8     524.8
## 2307    4   3   Landertinger           Dominik    AUT          1042.5     524.4
## 2308    5  34         Lesser              Erik    GER          1043.4     528.1
## 2309    6   4          Burke               Tim    USA          1061.3     547.5
## 2310    7  25            Boe Johannes Thingnes    NOR          1059.9     520.1
## 2311    8   7           Doll          Benedikt    GER          1061.2     546.2
## 2312    9   9   Rastorgujevs           Andrejs    LAT          1057.2     547.2
## 2313   10  35       Windisch           Dominik    ITA          1072.1     544.2
## 2314   11  44          Weger          Benjamin    SUI          1064.9     546.6
## 2315   12  43       Slesingr            Michal    CZE          1072.5     526.7
## 2316   13  45        Zhyrnyi         Oleksandr    UKR          1064.6     542.2
## 2317   14   8        Semenov            Sergii    UKR          1070.0     547.7
## 2318   14  22     Lindstroem           Fredrik    SWE          1082.7     561.8
## 2319   16  59        Sinapov             Anton    BUL          1071.1     538.6
## 2320   17  26          Hofer             Lukas    ITA          1074.0     537.2
## 2321   18  14    Kilchytskyy           Vitaliy    UKR          1074.6     537.6
## 2322   19  38      Desthieux             Simon    FRA          1082.8     565.1
## 2323   20  30 Fillon Maillet           Quentin    FRA          1072.6     535.4
## 2324   21  54        Doherty              Sean    USA          1095.6     519.6
## 2325   22  46       Chepelin          Vladimir    BLR          1098.0     554.8
## 2326   23   2         Slepov            Alexey    RUS          1111.6     564.5
## 2327   24  18         Volkov            Alexey    RUS          1094.4     565.6
## 2328   25  24        Moravec            Ondrej    CZE          1096.1     553.9
## 2329   26  75        Dyuzhev           Dmitriy    BLR          1095.8     573.6
## 2330   27  57         Soukup          Jaroslav    CZE          1095.9     560.0
## 2331   28  15      Savitskiy               Yan    KAZ          1095.7     565.7
## 2332   29   5     Garanichev           Evgeniy    RUS          1098.3     528.8
## 2333   30  87       Siemakov         Volodymyr    UKR          1102.4     547.5
## 2334   31  36         Bailey            Lowell    USA          1098.9     555.1
## 2335   32  58          Nelin            Jesper    SWE          1102.6     545.3
## 2336   33  66           Graf           Florian    GER          1081.0     547.0
## 2337   34   1       Darozhka        Aliaksandr    BLR          1103.2     579.8
## 2338   35  17            Boe            Tarjei    NOR          1111.2     574.9
## 2339   36  72      Yaliotnau             Raman    BLR          1116.8     580.6
## 2340   37  74         Bischl          Matthias    GER          1090.9     569.9
## 2341   38  11           Eder             Simon    AUT          1108.4     549.0
## 2342   39  27         Krcmar            Michal    CZE          1116.9     558.3
## 2343   40  42       Fourcade            Martin    FRA          1116.8     542.3
## 2344   41  19    Bjoerndalen         Ole Einar    NOR          1096.4     556.3
## 2345   42  23          Green           Brendan    CAN          1106.9     578.8
## 2346   43  28          Iliev          Vladimir    BUL          1128.5     557.2
## 2347   44  31       Tsvetkov             Maxim    RUS          1114.8     590.8
## 2348   45  29       Shipulin             Anton    RUS          1097.8     568.1
## 2349   46  16           Anev          Krasimir    BUL          1110.6     583.5
## 2350   47  76         Pinter         Friedrich    AUT          1115.5     586.5
## 2351   48  32      Stenersen          Torstein    SWE          1114.8     580.7
## 2352   49  63         Waeger            Lorenz    AUT          1119.6     561.0
## 2353   50  51        Hasilla             Tomas    SVK          1107.6     565.7
## 2354   51  48       Tkalenko            Ruslan    UKR          1132.3     593.1
## 2355   52  49     Dombrovski             Karol    LTU          1116.7     570.5
## 2356   53   6       Wiestner           Serafin    SUI          1137.7     567.3
## 2357   54  50     Hiidensalo              Olli    FIN          1131.4     598.1
## 2358   55  41       Malyshko            Dmitry    RUS          1151.3     568.3
## 2359   56  78     Pashchenko              Petr    RUS          1136.1     588.0
## 2360   57  61         Zahkna              Rene    EST          1129.8     552.6
## 2361   58  60        Eliseev            Matvey    RUS          1111.3     544.5
## 2362   59  82         Pantov             Anton    KAZ          1128.1     573.4
## 2363   60  62        Beatrix    Jean Guillaume    FRA          1138.0     585.1
## 2364   61  77          Nagai             Junji    JPN          1125.8     567.9
## 2365   62  68            Lee             Inbok    KOR          1134.2     588.5
## 2366   63  73        Gronman            Tuomas    FIN          1146.7     579.7
## 2367   64  79           Buta            George    ROU          1137.8     568.7
## 2368   65  52         Dolder             Mario    SUI          1153.7     625.1
## 2369   66  37        Otcenas            Martin    SVK          1149.4     591.1
## 2370   67  67       Puchianu            Cornel    ROU          1161.0     600.5
## 2371   68  53           Faur             Remus    ROU          1161.3     590.1
## 2372   69  10          Kazar             Matej    SVK          1183.4     571.7
## 2373   70  20       Fourcade             Simon    FRA          1188.5     596.4
## 2374   71  81        Slotins           Roberts    LAT          1156.4     602.9
## 2375   72  85       Vaclavik              Adam    CZE          1186.7     614.1
## 2376   73  33         Davies              Macx    CAN          1170.2     615.2
## 2377   74  12       Kaukenas             Tomas    LTU          1194.0     623.6
## 2378   75  47           Koiv             Kauri    EST          1188.4     612.7
## 2379   76  65            Gow             Scott    CAN          1183.0     613.3
## 2380   77  70      Patrijuks        Aleksandrs    LAT          1209.8     615.3
## 2381   78  83     Gerdzhikov           Dimitar    BUL          1196.2     587.2
## 2382   79  71         Dovzan              Miha    SLO          1195.3     595.5
## 2383   80  69      Tachizaki            Mikito    JPN          1222.5     627.6
## 2384   81  55          Braun             Maxim    KAZ          1204.4     597.4
## 2385   82  80         Treier               Jan    EST          1197.2     625.7
## 2386   83  84        Strolia          Vytautas    LTU          1250.3     652.7
## 2387   84  64       Laponder            Marcel    GBR          1272.9     625.7
## 2388    1   2        Schempp             Simon    GER          1674.9     434.8
## 2389    2   7            Boe Johannes Thingnes    NOR          1671.5     431.7
## 2390    3   5         Lesser              Erik    GER          1682.2     435.5
## 2391    4  11          Weger          Benjamin    SUI          1682.7     418.0
## 2392    5   8           Doll          Benedikt    GER          1697.5     408.2
## 2393    6   6          Burke               Tim    USA          1698.6     436.8
## 2394    7  15     Lindstroem           Fredrik    SWE          1701.3     414.0
## 2395    8   4   Landertinger           Dominik    AUT          1708.1     461.9
## 2396    9   3        Peiffer              Arnd    GER          1719.4     453.6
## 2397   10  12       Slesingr            Michal    CZE          1717.0     420.2
## 2398   11  38           Eder             Simon    AUT          1726.5     403.9
## 2399   12  35            Boe            Tarjei    NOR          1748.2     429.6
## 2400   13   9   Rastorgujevs           Andrejs    LAT          1741.4     448.0
## 2401   14  29     Garanichev           Evgeniy    RUS          1746.8     406.3
## 2402   15  14        Semenov            Sergii    UKR          1746.1     424.4
## 2403   16  10       Windisch           Dominik    ITA          1771.4     438.8
## 2404   17  39         Krcmar            Michal    CZE          1773.7     417.3
## 2405   18   1       Eberhard            Julian    AUT          1770.9     444.2
## 2406   19  13        Zhyrnyi         Oleksandr    UKR          1757.1     446.5
## 2407   20  45       Shipulin             Anton    RUS          1783.5     434.2
## 2408   21  17          Hofer             Lukas    ITA          1780.7     417.4
## 2409   22  31         Bailey            Lowell    USA          1774.4     428.7
## 2410   23  19      Desthieux             Simon    FRA          1791.0     419.4
## 2411   24  34       Darozhka        Aliaksandr    BLR          1793.8     440.4
## 2412   25  25        Moravec            Ondrej    CZE          1804.9     437.5
## 2413   26  27         Soukup          Jaroslav    CZE          1804.5     447.4
## 2414   27  23         Slepov            Alexey    RUS          1825.3     416.8
## 2415   28  18    Kilchytskyy           Vitaliy    UKR          1805.9     429.1
## 2416   29  32          Nelin            Jesper    SWE          1819.1     463.1
## 2417   30  16        Sinapov             Anton    BUL          1811.6     459.3
## 2418   31  24         Volkov            Alexey    RUS          1817.4     446.3
## 2419   32  21        Doherty              Sean    USA          1836.7     437.4
## 2420   33  55       Malyshko            Dmitry    RUS          1839.5     412.2
## 2421   34  30       Siemakov         Volodymyr    UKR          1840.7     440.1
## 2422   35  58        Eliseev            Matvey    RUS          1814.1     419.3
## 2423   36  42          Green           Brendan    CAN          1837.2     452.6
## 2424   37  46           Anev          Krasimir    BUL          1849.6     472.4
## 2425   38  26        Dyuzhev           Dmitriy    BLR          1858.9     463.2
## 2426   39  48      Stenersen          Torstein    SWE          1843.6     454.0
## 2427   40  56     Pashchenko              Petr    RUS          1860.2     421.0
## 2428   41  37         Bischl          Matthias    GER          1852.7     449.2
## 2429   42  51       Tkalenko            Ruslan    UKR          1867.6     438.2
## 2430   43  43          Iliev          Vladimir    BUL          1877.7     439.0
## 2431   44  44       Tsvetkov             Maxim    RUS          1869.9     442.9
## 2432   45  36      Yaliotnau             Raman    BLR          1890.5     470.5
## 2433   46  33           Graf           Florian    GER          1880.9     442.8
## 2434   47  22       Chepelin          Vladimir    BLR          1914.3     494.7
## 2435   48  60        Beatrix    Jean Guillaume    FRA          1906.1     440.8
## 2436   49  54     Hiidensalo              Olli    FIN          1935.0     436.0
## 2437   50  49         Waeger            Lorenz    AUT          1947.5     442.7
## 2438   51  47         Pinter         Friedrich    AUT          1977.1     485.1
## 2439   52  52     Dombrovski             Karol    LTU          1995.3     480.5
## 2440   53  57         Zahkna              Rene    EST          2014.8     497.1
## 2441    1   6       Fourcade            Martin    FRA          1014.6     507.4
## 2442    2  66        Peiffer              Arnd    GER          1046.5     540.5
## 2443    3  40    Bjoerndalen         Ole Einar    NOR          1059.4     529.9
## 2444    4  45 Fillon Maillet           Quentin    FRA          1069.8     531.2
## 2445    5  47           Doll          Benedikt    GER          1074.9     577.5
## 2446    6   1            Boe Johannes Thingnes    NOR          1065.4     545.0
## 2447    7  14       Svendsen        Emil Hegle    NOR          1076.5     576.4
## 2448    8  30     Pidruchnyi            Dmytro    UKR          1073.1     564.5
## 2449    9  17          Smith            Nathan    CAN          1078.7     556.8
## 2450   10  99         Davies              Macx    CAN          1083.8     545.0
## 2451   11   5     Grossegger              Sven    AUT          1084.3     576.5
## 2452   12  55    L'Abee-Lund            Henrik    NOR          1109.8     574.5
## 2453   13  82         Krcmar            Michal    CZE          1113.3     556.2
## 2454   14 105          Boehm            Daniel    GER          1111.6     576.0
## 2455   15  86      Yaliotnau             Raman    BLR          1112.0     587.2
## 2456   16  43          Weger          Benjamin    SUI          1127.5     574.4
## 2457   16  87          Nelin            Jesper    SWE          1095.7     560.4
## 2458   18  13         Slepov            Alexey    RUS          1126.5     593.2
## 2459   19  27           Eder             Simon    AUT          1117.2     589.2
## 2460   20  24           Anev          Krasimir    BUL          1122.5     583.3
## 2461   21   9          Iliev          Vladimir    BUL          1123.8     542.2
## 2462   21  22      Desthieux             Simon    FRA          1122.2     594.6
## 2463   23   8          Kazar             Matej    SVK          1115.4     563.3
## 2464   24  33       Slesingr            Michal    CZE          1129.5     548.3
## 2465   25  88        Doherty              Sean    USA          1118.0     581.2
## 2466   26  81       Siemakov         Volodymyr    UKR          1123.6     595.0
## 2467   27  49     Garanichev           Evgeniy    RUS          1135.7     624.5
## 2468   28  25        Otcenas            Martin    SVK          1134.6     598.3
## 2469   29  20            Boe            Tarjei    NOR          1145.2     630.2
## 2470   30  42         Lesser              Erik    GER          1136.4     573.6
## 2471   31  78        Beatrix    Jean Guillaume    FRA          1152.3     592.7
## 2472   32  46       Shipulin             Anton    RUS          1140.7     583.6
## 2473   33 106          Braun             Maxim    KAZ          1115.1     548.9
## 2474   34  74       Malyshko            Dmitry    RUS          1144.4     587.4
## 2475   35 103        Lapshin           Timofei    RUS          1119.5     598.1
## 2476   36  57     Mesotitsch            Daniel    AUT          1127.5     579.8
## 2477   37  62       Kaukenas             Tomas    LTU          1123.5     595.7
## 2478   38  97        Krupcik             Tomas    CZE          1141.6     617.5
## 2479   39  84        Hasilla             Tomas    SVK          1131.7     614.9
## 2480   40  52        Moravec            Ondrej    CZE          1153.2     636.5
## 2481   41   4     De Lorenzi         Christian    ITA          1127.7     579.0
## 2482   42  29          Bauer            Klemen    SLO          1149.6     583.8
## 2483   43  48            Fak             Jakov    SLO          1153.6     552.6
## 2484   44  36       Tsvetkov             Maxim    RUS          1150.9     613.0
## 2485   45  63          Burke               Tim    USA          1157.3     617.2
## 2486   46  61        Sinapov             Anton    BUL          1135.9     609.0
## 2487   47   3     Birnbacher           Andreas    GER          1155.5     570.8
## 2488   48  93       Eberhard            Julian    AUT          1173.2     610.1
## 2489   49  10       Fourcade             Simon    FRA          1169.1     616.9
## 2490   50  12          Pryma             Artem    UKR          1183.1     583.2
## 2491   51  28       Puchianu            Cornel    ROU          1153.7     594.5
## 2492   52  18        Semenov            Sergii    UKR          1172.7     612.1
## 2493   53  11   Rastorgujevs           Andrejs    LAT          1173.2     647.3
## 2494   54  35         Soukup          Jaroslav    CZE          1182.6     607.4
## 2495   55   2          Green           Brendan    CAN          1173.4     601.7
## 2496   56  38     Lindstroem           Fredrik    SWE          1173.1     619.8
## 2497   57  32   Landertinger           Dominik    AUT          1174.6     599.1
## 2498   58  83      Birkeland        Lars Helge    NOR          1181.2     595.9
## 2499   59  44      Savitskiy               Yan    KAZ          1166.4     595.4
## 2500   60  95      Tachizaki            Mikito    JPN          1172.5     558.7
## 2501   61  19       Chepelin          Vladimir    BLR          1189.9     624.8
## 2502   62  23         Liadov             Yuryi    BLR          1176.8     661.0
## 2503   63  80     Hiidensalo              Olli    FIN          1184.5     611.8
## 2504   64  15       Nordgren              Leif    USA          1186.7     614.3
## 2505   65  70        Dyuzhev           Dmitriy    BLR          1200.0     571.7
## 2506   66  39       Wiestner           Serafin    SUI          1194.1     617.6
## 2507   67  34            Gow             Scott    CAN          1212.6     602.6
## 2508   68  26         Bailey            Lowell    USA          1200.1     656.1
## 2509   69  60        Armgren               Ted    SWE          1207.7     600.6
## 2510   70  64            Gow         Christian    CAN          1211.6     626.7
## 2511   71  77          Hofer             Lukas    ITA          1212.6     687.7
## 2512   72  76       Matiasko          Miroslav    SVK          1225.3     644.8
## 2513   73  37       Windisch           Dominik    ITA          1230.9     669.2
## 2514   74  68          Trsan               Rok    SLO          1222.0     639.3
## 2515   75 104         Jaeger            Martin    SUI          1219.9     645.9
## 2516   76  96      Guigonnat           Antonin    FRA          1232.0     625.3
## 2517   77  31        Schempp             Simon    GER          1248.6     630.8
## 2518   78  79        Finello            Jeremy    SUI          1228.1     623.6
## 2519   79  65          Oblak            Lenart    SLO          1204.9     641.7
## 2520   80  21        Femling             Peppe    SWE          1204.4     654.8
## 2521   81  98        Gronman            Tuomas    FIN          1176.8     595.5
## 2522   82  73         Hakala             Matti    FIN          1211.0     610.8
## 2523   83  50           Buta            George    ROU          1241.0     685.0
## 2524   84  41           Koiv             Kauri    EST          1211.0     652.1
## 2525   85  16         Ermits             Kalev    EST          1234.8     660.8
## 2526   86  92           Faur             Remus    ROU          1244.9     682.1
## 2527   87  58          Guzik          Grzegorz    POL          1222.9     604.1
## 2528   88  94    Kilchytskyy           Vitaliy    UKR          1251.9     663.8
## 2529   89 100        Slotins           Roberts    LAT          1236.9     639.6
## 2530   90  89         Dovzan              Miha    SLO          1251.1     644.2
## 2531   91  69            Kim           Jongmin    KOR          1236.3     633.3
## 2532   92 102      Bormolini            Thomas    ITA          1254.3     668.9
## 2533   93  91          Janik           Mateusz    POL          1265.4     632.8
## 2534   94  51       Szczurek            Lukasz    POL          1262.7     681.9
## 2535   94  75     Dombrovski             Karol    LTU          1250.8     664.2
## 2536   96  72       Kobonoki           Tsukasa    JPN          1298.6     670.1
## 2537   97  90       Laponder            Marcel    GBR          1279.7     627.2
## 2538   98  53        Remmelg            Martin    EST          1295.0     630.3
## 2539   99 101     Kletcherov           Michail    BUL          1281.6     691.4
## 2540  100  59          Dixon             Scott    GBR          1286.7     677.8
## 2541  101  56           Lusa          Daumants    LAT          1276.9     676.1
## 2542  102  71         Pantov             Anton    KAZ          1354.9     696.9
## 2543  103  85        Strolia          Vytautas    LTU          1331.2     710.0
## 2544    1  81    Bjoerndalen         Ole Einar    NOR          2467.5     631.6
## 2545    2  30        Schempp             Simon    GER          2503.5     617.2
## 2546    3  58         Volkov            Alexey    RUS          2486.3     631.3
## 2547    4  22       Svendsen        Emil Hegle    NOR          2580.9     620.2
## 2548    4  23 Fillon Maillet           Quentin    FRA          2568.2     610.1
## 2549    6  64       Fourcade             Simon    FRA          2585.4     685.5
## 2550    7  24           Eder             Simon    AUT          2588.3     685.3
## 2551    8  39   Landertinger           Dominik    AUT          2603.6     737.1
## 2552    9 100      Birkeland        Lars Helge    NOR          2592.4     631.4
## 2553   10   3        Semenov            Sergii    UKR          2596.8     621.9
## 2554   11  15    L'Abee-Lund            Henrik    NOR          2609.1     697.8
## 2555   12 102     Birnbacher           Andreas    GER          2597.5     641.9
## 2556   13  94     Mesotitsch            Daniel    AUT          2620.1     715.2
## 2557   14  41     Lindstroem           Fredrik    SWE          2638.3     637.4
## 2558   15  87      Desthieux             Simon    FRA          2654.5     624.6
## 2559   16  21       Shipulin             Anton    RUS          2641.0     623.3
## 2560   17  88        Doherty              Sean    USA          2655.0     636.5
## 2561   18  98        Babikov             Anton    RUS          2641.0     644.0
## 2562   19  33            Boe Johannes Thingnes    NOR          2660.9     688.0
## 2563   20  44          Pryma             Artem    UKR          2650.1     690.7
## 2564   21  67       Fourcade            Martin    FRA          2674.7     786.8
## 2565   22  35            Boe            Tarjei    NOR          2679.1     670.3
## 2566   23  18       Chepelin          Vladimir    BLR          2667.5     647.4
## 2567   24  26         Bailey            Lowell    USA          2661.1     764.3
## 2568   25  79        Dyuzhev           Dmitriy    BLR          2674.8     693.0
## 2569   26  32       Tsvetkov             Maxim    RUS          2695.3     683.8
## 2570   27  28          Smith            Nathan    CAN          2691.0     676.9
## 2571   28  31         Soukup          Jaroslav    CZE          2695.7     697.3
## 2572   29  29      Savitskiy               Yan    KAZ          2668.3     635.5
## 2573   30  76        Beatrix    Jean Guillaume    FRA          2689.2     752.6
## 2574   31  14     Garanichev           Evgeniy    RUS          2700.8     740.9
## 2575   32  38       Malyshko            Dmitry    RUS          2704.4     618.3
## 2576   33  55           Buta            George    ROU          2694.8     655.6
## 2577   34  42       Windisch           Dominik    ITA          2703.9     736.5
## 2578   35   8        Moravec            Ondrej    CZE          2719.8     702.4
## 2579   36  37          Bauer            Klemen    SLO          2738.6     622.1
## 2580   37  66          Burke               Tim    USA          2718.2     643.9
## 2581   38  34       Wiestner           Serafin    SUI          2736.1     703.0
## 2582   39  48         Lesser              Erik    GER          2737.9     753.3
## 2583   40  25          Weger          Benjamin    SUI          2737.3     653.2
## 2584   41  50       Kaukenas             Tomas    LTU          2733.5     718.4
## 2585   42  73     De Lorenzi         Christian    ITA          2725.7     715.1
## 2586   43  19     Grossegger              Sven    AUT          2717.8     666.8
## 2587   44  80     Dombrovski             Karol    LTU          2728.7     714.7
## 2588   45   9        Femling             Peppe    SWE          2757.7     718.1
## 2589   46   2           Doll          Benedikt    GER          2790.8     798.4
## 2590   47 101         Dovzan              Miha    SLO          2741.9     678.0
## 2591   48  46        Lessing            Roland    EST          2747.1     730.6
## 2592   49  56        Armgren               Ted    SWE          2773.2     646.8
## 2593   50  40        Zhyrnyi         Oleksandr    UKR          2742.6     734.8
## 2594   51  36        Peiffer              Arnd    GER          2766.3     705.4
## 2595   52  82        Finello            Jeremy    SUI          2776.6     755.7
## 2596   53  20       Slesingr            Michal    CZE          2795.4     625.0
## 2597   54  99       Arwidson            Tobias    SWE          2744.4     718.4
## 2598   55  70     Gerdzhikov           Dimitar    BUL          2768.0     650.7
## 2599   56  89        Remmelg            Martin    EST          2756.3     733.4
## 2600   57  52       Eberhard            Julian    AUT          2814.7     744.9
## 2601   58  57        Krupcik             Tomas    CZE          2774.1     726.4
## 2602   59  86       Matiasko          Miroslav    SVK          2772.5     782.3
## 2603   60  11        Otcenas            Martin    SVK          2826.1     756.1
## 2604   61  45          Kazar             Matej    SVK          2802.0     768.2
## 2605   62  47            Gow         Christian    CAN          2805.5     763.9
## 2606   63   6      Guigonnat           Antonin    FRA          2834.4     824.8
## 2607   64  91       Partalov           Dimitar    BUL          2819.5     678.7
## 2608   65  59          Guzik          Grzegorz    POL          2816.3     798.2
## 2609   66  10          Iliev          Vladimir    BUL          2885.6     741.4
## 2610   67  61          Trsan               Rok    SLO          2833.3     668.7
## 2611   68  27         Liadov             Yuryi    BLR          2857.1     674.5
## 2612   69  60       Szczurek            Lukasz    POL          2825.5     684.8
## 2613   70   1         Krcmar            Michal    CZE          2890.9     765.5
## 2614   71 104        Strolia          Vytautas    LTU          2850.6     748.5
## 2615   72  17         Joller              Ivan    SUI          2860.2     781.5
## 2616   73  63          Oblak            Lenart    SLO          2853.5     746.2
## 2617   74  16      Bormolini            Thomas    ITA          2908.0     718.3
## 2618   75  90       Siemakov         Volodymyr    UKR          2891.7     719.8
## 2619   76  51          Boehm            Daniel    GER          2908.2     770.7
## 2620   77  13          Green           Brendan    CAN          2900.6     775.1
## 2621   78   4            Fak             Jakov    SLO          2934.4     825.8
## 2622   79  53         Pantov             Anton    KAZ          2901.5     856.1
## 2623   80  84          Penar             Rafal    POL          2904.2     803.0
## 2624   81  12         Ermits             Kalev    EST          2952.3     713.1
## 2625   82  77        Rusinov            Dmytro    UKR          2910.6     735.3
## 2626   83  74           Lusa          Daumants    LAT          2899.5     776.3
## 2627   84  69        Hasilla             Tomas    SVK          2975.6     794.6
## 2628   85  85         Davies              Macx    CAN          2941.8     804.3
## 2629   86   7            Gow             Scott    CAN          3007.5     756.8
## 2630   87  96    Bocharnikov            Sergey    BLR          2976.0     790.3
## 2631   88  83     Hiidensalo              Olli    FIN          2989.1     692.7
## 2632   89  43       Puchianu            Cornel    ROU          3037.4     812.6
## 2633   90  54           Koiv             Kauri    EST          3019.9     857.8
## 2634   91  62         Rastic             Damir    SRB          3019.1     778.3
## 2635   92  93     Podkorytov          Vassiliy    KAZ          3066.2     710.2
## 2636   93  49         Hakala             Matti    FIN          3091.1     824.2
## 2637   94 103       Kobonoki           Tsukasa    JPN          3098.8     800.6
## 2638   95  71     Kletcherov           Michail    BUL          3088.6     897.8
## 2639   96  92         Serban             Denis    ROU          3157.5     799.5
## 2640   97  72          Dixon             Scott    GBR          3140.5     679.1
## 2641   98 106       Laponder            Marcel    GBR          3120.1     829.5
## 2642   99  65      Tachizaki            Mikito    JPN          3166.2     826.7
## 2643  100  68         Langer          Thorsten    BEL          3144.8     814.7
## 2644  101  75            Kim           Yonggyu    KOR          3221.4     837.5
## 2645  102  97        Slotins           Roberts    LAT          3234.3     948.1
## 2646  103  78        Puzulis           Rolands    LAT          3250.8     860.9
## 2647  104   5       Nordgren              Leif    USA          3429.8     720.1
## 2648    1   1       Fourcade            Martin    FRA          1542.4     391.7
## 2649    2   2        Peiffer              Arnd    GER          1608.6     381.3
## 2650    3   4 Fillon Maillet           Quentin    FRA          1628.7     399.1
## 2651    4  29            Boe            Tarjei    NOR          1652.0     364.6
## 2652    5   7       Svendsen        Emil Hegle    NOR          1641.6     397.4
## 2653    6   5           Doll          Benedikt    GER          1650.1     403.8
## 2654    7  34       Malyshko            Dmitry    RUS          1654.3     366.3
## 2655    8  27     Garanichev           Evgeniy    RUS          1643.6     381.5
## 2656    9   8     Pidruchnyi            Dmytro    UKR          1654.7     382.3
## 2657   10   9          Smith            Nathan    CAN          1653.1     396.2
## 2658   11   3    Bjoerndalen         Ole Einar    NOR          1664.6     367.9
## 2659   12  19           Eder             Simon    AUT          1664.1     401.5
## 2660   13  18         Slepov            Alexey    RUS          1681.9     389.7
## 2661   14  49       Fourcade             Simon    FRA          1682.7     371.5
## 2662   15  32       Shipulin             Anton    RUS          1672.4     403.3
## 2663   16   6            Boe Johannes Thingnes    NOR          1699.7     364.8
## 2664   17  21          Iliev          Vladimir    BUL          1697.8     374.6
## 2665   18  47     Birnbacher           Andreas    GER          1702.6     370.5
## 2666   19  40        Moravec            Ondrej    CZE          1704.6     382.0
## 2667   20  24       Slesingr            Michal    CZE          1713.4     423.2
## 2668   21  22      Desthieux             Simon    FRA          1712.9     408.2
## 2669   22  39        Hasilla             Tomas    SVK          1706.1     380.8
## 2670   23  11     Grossegger              Sven    AUT          1705.2     404.0
## 2671   24  13         Krcmar            Michal    CZE          1719.7     408.0
## 2672   25  58      Birkeland        Lars Helge    NOR          1720.7     370.6
## 2673   26  20           Anev          Krasimir    BUL          1710.2     405.1
## 2674   27  30         Lesser              Erik    GER          1717.8     427.9
## 2675   28  31        Beatrix    Jean Guillaume    FRA          1729.7     421.9
## 2676   29  42          Bauer            Klemen    SLO          1728.5     405.5
## 2677   30  10         Davies              Macx    CAN          1734.3     417.3
## 2678   31  44       Tsvetkov             Maxim    RUS          1750.0     408.2
## 2679   32  14          Boehm            Daniel    GER          1745.0     431.5
## 2680   33  35        Lapshin           Timofei    RUS          1752.1     388.4
## 2681   34  41     De Lorenzi         Christian    ITA          1750.2     395.0
## 2682   35  23          Kazar             Matej    SVK          1754.6     418.9
## 2683   36  53   Rastorgujevs           Andrejs    LAT          1756.1     409.5
## 2684   37  56     Lindstroem           Fredrik    SWE          1779.8     439.2
## 2685   38  55          Green           Brendan    CAN          1780.9     387.1
## 2686   39  45          Burke               Tim    USA          1776.3     387.3
## 2687   40  26       Siemakov         Volodymyr    UKR          1781.7     391.7
## 2688   41  57   Landertinger           Dominik    AUT          1796.6     386.0
## 2689   42  38        Krupcik             Tomas    CZE          1785.9     407.9
## 2690   43  17          Nelin            Jesper    SWE          1790.9     453.0
## 2691   44  50          Pryma             Artem    UKR          1784.6     391.2
## 2692   45  48       Eberhard            Julian    AUT          1813.6     471.0
## 2693   46  25        Doherty              Sean    USA          1806.8     430.3
## 2694   47  12    L'Abee-Lund            Henrik    NOR          1804.5     441.2
## 2695   48  33          Braun             Maxim    KAZ          1800.7     401.1
## 2696   49  37       Kaukenas             Tomas    LTU          1837.3     460.3
## 2697   50  28        Otcenas            Martin    SVK          1845.4     494.9
## 2698   51  60      Tachizaki            Mikito    JPN          1839.3     392.3
## 2699   52  15      Yaliotnau             Raman    BLR          1854.8     416.9
## 2700   53  59      Savitskiy               Yan    KAZ          1850.4     386.1
## 2701   54  43            Fak             Jakov    SLO          1871.5     395.8
## 2702   55  51       Puchianu            Cornel    ROU          1868.9     399.7
## 2703   56  54         Soukup          Jaroslav    CZE          1865.3     415.9
## 2704   57  52        Semenov            Sergii    UKR          1873.9     386.6
## 2705   58  36     Mesotitsch            Daniel    AUT          1871.4     416.8
## 2706   59  16          Weger          Benjamin    SUI          1900.6     422.3
## 2707   60  46        Sinapov             Anton    BUL          1932.7     470.6
## 2708    1   8       Fourcade            Martin    FRA          1026.8     514.5
## 2709    2  53    Bjoerndalen         Ole Einar    NOR          1037.1     523.9
## 2710    3  69        Semenov            Sergii    UKR          1042.3     528.6
## 2711    4  58            Boe Johannes Thingnes    NOR          1052.5     543.6
## 2712    5  34       Windisch           Dominik    ITA          1064.9     521.6
## 2713    6   9     Garanichev           Evgeniy    RUS          1051.5     542.1
## 2714    7  47        Peiffer              Arnd    GER          1050.0     531.1
## 2715    8  84        Schempp             Simon    GER          1054.3     522.7
## 2716    9  81   Landertinger           Dominik    AUT          1062.4     526.3
## 2717   10  45          Iliev          Vladimir    BUL          1073.5     548.1
## 2718   11  76       Wiestner           Serafin    SUI          1058.6     552.6
## 2719   12  82      Desthieux             Simon    FRA          1075.4     558.9
## 2720   13  33       Chepelin          Vladimir    BLR          1087.3     542.7
## 2721   14  35          Burke               Tim    USA          1080.0     553.8
## 2722   15  83       Slesingr            Michal    CZE          1078.6     538.2
## 2723   16  12 Fillon Maillet           Quentin    FRA          1081.8     528.5
## 2724   17  87       Svendsen        Emil Hegle    NOR          1063.1     549.8
## 2725   18  91       Nordgren              Leif    USA          1066.1     542.7
## 2726   19  80         Lesser              Erik    GER          1103.5     579.5
## 2727   20  24   Rastorgujevs           Andrejs    LAT          1081.6     575.2
## 2728   21  73       Kaukenas             Tomas    LTU          1086.0     556.9
## 2729   22  93          Pryma             Artem    UKR          1082.1     561.4
## 2730   23  30        Babikov             Anton    RUS          1062.6     544.5
## 2731   24 101         Krcmar            Michal    CZE          1091.5     541.9
## 2732   25  65        Otcenas            Martin    SVK          1088.9     568.8
## 2733   26  96       Puchianu            Cornel    ROU          1085.0     541.6
## 2734   27  62           Eder             Simon    AUT          1101.1     567.9
## 2735   28   3        Zhyrnyi         Oleksandr    UKR          1073.9     549.5
## 2736   29  79         Bailey            Lowell    USA          1091.3     536.2
## 2737   30  43     Lindstroem           Fredrik    SWE          1089.9     566.8
## 2738   31  75          Nelin            Jesper    SWE          1102.0     581.4
## 2739   32  71       Darozhka        Aliaksandr    BLR          1089.6     564.8
## 2740   33  46           Doll          Benedikt    GER          1122.6     579.7
## 2741   34  61           Anev          Krasimir    BUL          1105.4     583.8
## 2742   35  60          Green           Brendan    CAN          1109.7     569.7
## 2743   36  97       Eberhard            Julian    AUT          1124.8     563.9
## 2744   37  44        Lessing            Roland    EST          1102.0     569.9
## 2745   38  88           Koiv             Kauri    EST          1079.8     557.0
## 2746   39  36            Fak             Jakov    SLO          1101.3     561.6
## 2747   40  32      Savitskiy               Yan    KAZ          1101.0     546.6
## 2748   41  25     De Lorenzi         Christian    ITA          1117.2     570.3
## 2749   42  67       Tsvetkov             Maxim    RUS          1096.7     572.9
## 2750   43  20        Doherty              Sean    USA          1116.9     566.3
## 2751   44  27     Pidruchnyi            Dmytro    UKR          1117.2     543.2
## 2752   45   1       Shipulin             Anton    RUS          1106.6     566.8
## 2753   46  40          Smith            Nathan    CAN          1127.4     592.9
## 2754   47  99            Gow             Scott    CAN          1122.0     596.4
## 2755   48 100         Jaeger            Martin    SUI          1118.3     586.6
## 2756   49  90     Kletcherov           Michail    BUL          1096.8     545.4
## 2757   50  70          Bauer            Klemen    SLO          1112.1     579.6
## 2758   51  37     Grossegger              Sven    AUT          1112.8     557.9
## 2759   51  52          Weger          Benjamin    SUI          1122.8     564.0
## 2760   53  59       Fourcade             Simon    FRA          1127.9     529.9
## 2761   54  86            Boe            Tarjei    NOR          1130.1     592.9
## 2762   55  48     Hiidensalo              Olli    FIN          1119.1     579.1
## 2763   56 102      Bormolini            Thomas    ITA          1104.0     582.4
## 2764   57  26          Kazar             Matej    SVK          1146.0     563.3
## 2765   58  15         Davies              Macx    CAN          1122.2     586.5
## 2766   59  42        Moravec            Ondrej    CZE          1144.0     623.2
## 2767   60  11         Soukup          Jaroslav    CZE          1145.5     591.2
## 2768   61  14      Stenersen          Torstein    SWE          1116.3     582.6
## 2769   62  19        Hasilla             Tomas    SVK          1130.8     588.3
## 2770   63  10         Ermits             Kalev    EST          1142.7     543.7
## 2771   64  50          Janik           Mateusz    POL          1140.4     583.0
## 2772   65   7        Sinapov             Anton    BUL          1139.9     588.9
## 2773   66  18         Dolder             Mario    SUI          1156.7     577.2
## 2774   67  85       Kobonoki           Tsukasa    JPN          1140.5     579.8
## 2775   68  23      Tachizaki            Mikito    JPN          1139.9     580.3
## 2776   69  94   Bjoentegaard            Erlend    NOR          1147.9     599.3
## 2777   70  55           Buta            George    ROU          1140.1     587.5
## 2778   71  98         Dovzan              Miha    SLO          1146.4     603.5
## 2779   72  13     Podkorytov          Vassiliy    KAZ          1136.3     579.7
## 2780   73  28          Nagai             Junji    JPN          1148.6     595.0
## 2781   74   5      Yaliotnau             Raman    BLR          1170.6     601.7
## 2782   75  63          Hofer             Lukas    ITA          1152.7     580.8
## 2783   76  78       Szczurek            Lukasz    POL          1159.1     586.9
## 2784   77  72          Braun             Maxim    KAZ          1131.9     582.0
## 2785   78  22          Guzik          Grzegorz    POL          1177.6     584.4
## 2786   79  89        Varabei            Maksim    BLR          1178.4     616.0
## 2787   80  31         Roesch           Michael    BEL          1178.2     628.1
## 2788   81  64           Faur             Remus    ROU          1183.6     606.5
## 2789   82  17         Orpana              Sami    FIN          1185.7     637.5
## 2790   83   4       Crnkovic          Kresimir    CRO          1203.2     620.0
## 2791   84  74         Langer           Thierry    BEL          1196.7     585.2
## 2792   85  16          Trsan               Rok    SLO          1225.7     603.8
## 2793   86   6            Lee             Inbok    KOR          1228.1     607.4
## 2794   87  95        Strolia          Vytautas    LTU          1236.5     654.4
## 2795   88  92        Armgren               Ted    SWE          1231.7     616.9
## 2796   89  66        Gronman            Tuomas    FIN          1232.5     632.9
## 2797   90  77       Laponder            Marcel    GBR          1205.4     646.1
## 2798   91  51          Dixon             Scott    GBR          1210.4     644.2
## 2799   92  57            Kim           Jongmin    KOR          1229.8     601.8
## 2800   93  68        Slotins           Roberts    LAT          1237.2     655.5
## 2801   94  49        Angelis         Apostolos    GRE          1256.4     596.1
## 2802   95  39     Dombrovski             Karol    LTU          1217.8     654.9
## 2803   96  56         Gombos            Karoly    HUN          1280.2     677.6
## 2804   97  38       Ustuntas            Mehmet    TUR          1250.6     656.3
## 2805   98  29       Petrovic             Filip    CRO          1296.8     647.2
## 2806   99   2      Hrkalovic              Emir    SRB          1286.4     683.2
## 2807  100  41      Patrijuks        Aleksandrs    LAT          1313.5     668.2
## 2808  101  21       Ustuntas             Ahmet    TUR          1284.2     672.2
## 2809  102  54     Krsmanovic             Dejan    SRB          1357.7     643.5
## 2810    1  23       Fourcade            Martin    FRA          2375.2     585.6
## 2811    2  10   Landertinger           Dominik    AUT          2381.3     602.8
## 2812    3  18           Eder             Simon    AUT          2374.9     592.2
## 2813    4  27            Boe Johannes Thingnes    NOR          2417.0     659.2
## 2814    5  17         Krcmar            Michal    CZE          2434.6     618.8
## 2815    6  31            Fak             Jakov    SLO          2460.6     607.3
## 2816    7  77         Lesser              Erik    GER          2472.3     615.0
## 2817    8  49     Garanichev           Evgeniy    RUS          2489.4     604.7
## 2818    9  36     Birnbacher           Andreas    GER          2472.4     614.3
## 2819   10  11       Fourcade             Simon    FRA          2498.5     656.9
## 2820   11  46      Savitskiy               Yan    KAZ          2488.2     693.0
## 2821   12  54           Anev          Krasimir    BUL          2493.4     621.4
## 2822   13   3           Doll          Benedikt    GER          2534.6     671.5
## 2823   14  59       Shipulin             Anton    RUS          2509.6     670.5
## 2824   15  73         Bailey            Lowell    USA          2506.0     626.9
## 2825   16  39        Schempp             Simon    GER          2501.6     603.9
## 2826   17  91    Bjoerndalen         Ole Einar    NOR          2522.7     671.5
## 2827   18  47            Gow             Scott    CAN          2547.6     748.7
## 2828   19  58 Fillon Maillet           Quentin    FRA          2520.9     675.9
## 2829   20  32       Slesingr            Michal    CZE          2565.1     666.5
## 2830   21  20          Iliev          Vladimir    BUL          2553.8     718.3
## 2831   22   1            Boe            Tarjei    NOR          2568.4     722.9
## 2832   23  95         Soukup          Jaroslav    CZE          2563.3     676.8
## 2833   24  74           Koiv             Kauri    EST          2551.7     650.1
## 2834   25  89    Kilchytskyy           Vitaliy    UKR          2531.0     648.0
## 2835   26  90     Kletcherov           Michail    BUL          2545.4     651.0
## 2836   27   4       Nordgren              Leif    USA          2557.3     675.4
## 2837   28  60      Desthieux             Simon    FRA          2564.4     694.1
## 2838   29  84     Lindstroem           Fredrik    SWE          2589.9     632.2
## 2839   30  75        Beatrix    Jean Guillaume    FRA          2581.0     689.8
## 2840   31   5          Hofer             Lukas    ITA          2593.6     614.5
## 2841   32  43       Svendsen        Emil Hegle    NOR          2570.5     689.9
## 2842   33  76          Trsan               Rok    SLO          2563.2     655.1
## 2843   34  94        Doherty              Sean    USA          2590.8     627.3
## 2844   35  85        Moravec            Ondrej    CZE          2612.2     616.3
## 2845   36  92         Liadov             Yuryi    BLR          2595.1     635.9
## 2846   37   2        Femling             Peppe    SWE          2579.0     664.2
## 2847   38  14       Tkalenko            Ruslan    UKR          2606.4     631.1
## 2848   39  96         Volkov            Alexey    RUS          2621.8     623.5
## 2849   40  53        Zhyrnyi         Oleksandr    UKR          2638.2     623.0
## 2850   41  71         Komatz             David    AUT          2650.8     695.2
## 2851   42  69          Smith            Nathan    CAN          2659.4     711.6
## 2852   43  87         Dovzan              Miha    SLO          2625.6     654.6
## 2853   44  57          Burke               Tim    USA          2647.3     794.2
## 2854   45  52         Roesch           Michael    BEL          2636.2     713.9
## 2855   46  28            Gow         Christian    CAN          2653.6     699.8
## 2856   47  97          Green           Brendan    CAN          2655.5     690.6
## 2857   48   8         Pantov             Anton    KAZ          2633.1     657.3
## 2858   49  56          Weger          Benjamin    SUI          2654.4     700.4
## 2859   50  35        Lessing            Roland    EST          2689.5     731.8
## 2860   51  67      Bormolini            Thomas    ITA          2689.8     706.2
## 2861   52  16     Dombrovski             Karol    LTU          2628.2     681.7
## 2862   53  72       Wiestner           Serafin    SUI          2693.0     754.6
## 2863   54  48          Nelin            Jesper    SWE          2704.8     639.2
## 2864   55  66        Semenov            Sergii    UKR          2712.2     679.9
## 2865   56  38       Chepelin          Vladimir    BLR          2735.4     653.4
## 2866   57  83           Buta            George    ROU          2682.2     679.6
## 2867   58  40       Eberhard            Julian    AUT          2762.5     793.2
## 2868   59  37   Rastorgujevs           Andrejs    LAT          2749.7     742.0
## 2869   60  55       Windisch           Dominik    ITA          2752.4     673.5
## 2870   61  62      Yaliotnau             Raman    BLR          2766.6     745.6
## 2871   62  63         Orpana              Sami    FIN          2703.0     686.5
## 2872   63  68        Otcenas            Martin    SVK          2765.6     839.3
## 2873   64  70       Malyshko            Dmitry    RUS          2766.6     633.0
## 2874   65  22        Dyuzhev           Dmitriy    BLR          2738.5     714.3
## 2875   66  88      Stenersen          Torstein    SWE          2761.4     656.8
## 2876   67  61     Podkorytov          Vassiliy    KAZ          2752.6     722.9
## 2877   68  34          Nagai             Junji    JPN          2758.9     657.1
## 2878   69  13          Oblak            Lenart    SLO          2772.3     711.4
## 2879   70  50       Kaukenas             Tomas    LTU          2786.4     706.6
## 2880   71  86          Penar             Rafal    POL          2757.7     737.2
## 2881   72  24      Tachizaki            Mikito    JPN          2800.6     655.1
## 2882   73  98          Kazar             Matej    SVK          2810.5     693.6
## 2883   74  25         Dolder             Mario    SUI          2817.8     820.0
## 2884   75  79       Kobonoki           Tsukasa    JPN          2806.4     720.9
## 2885   76  45       Matiasko          Miroslav    SVK          2797.7     724.1
## 2886   77  81     Gerdzhikov           Dimitar    BUL          2815.8     647.4
## 2887   78  33       Szczurek            Lukasz    POL          2788.2     740.2
## 2888   79  44        Angelis         Apostolos    GRE          2828.3     739.5
## 2889   80  78          Guzik          Grzegorz    POL          2852.5     715.2
## 2890   81  12         Zahkna              Rene    EST          2855.4     722.7
## 2891   82  99     De Lorenzi         Christian    ITA          2865.3     694.9
## 2892   83  93        Finello            Jeremy    SUI          2918.0     806.4
## 2893   84  64         Langer           Thierry    BEL          2897.3     731.2
## 2894   85  41     Hiidensalo              Olli    FIN          2907.4     775.7
## 2895   86  65           Lusa          Daumants    LAT          2844.8     772.1
## 2896   87  80        Strolia          Vytautas    LTU          2924.7     721.4
## 2897   88   7        Gronman            Tuomas    FIN          2933.1     762.3
## 2898   89  51          Dixon             Scott    GBR          2888.1     832.9
## 2899   90   6            Lee             Inbok    KOR          2988.3     664.3
## 2900   91  15      Ungureanu            Marius    ROU          3010.3     780.7
## 2901   92  19      Hrkalovic              Emir    SRB          2969.9     884.7
## 2902   93  29            Kim           Jongmin    KOR          2968.7     822.8
## 2903   94  30       Puchianu            Cornel    ROU          3073.4     701.8
## 2904   95  26        Slotins           Roberts    LAT          3038.5     764.7
## 2905   96   9       Ustuntas            Mehmet    TUR          3025.8     746.7
## 2906   97  21         Gombos            Karoly    HUN          3158.9     885.8
## 2907   98  82       Laponder            Marcel    GBR          3182.6     763.1
## 2908   99  42         Hodzic              Edin    SRB          3308.8     882.4
## 2909    1   8            Boe Johannes Thingnes    NOR          1790.8     449.2
## 2910    2   1       Fourcade            Martin    FRA          1783.6     450.1
## 2911    3   2    Bjoerndalen         Ole Einar    NOR          1789.2     458.2
## 2912    4  21       Windisch           Dominik    ITA          1810.8     470.8
## 2913    5  14        Peiffer              Arnd    GER          1813.7     458.4
## 2914    6   9            Boe            Tarjei    NOR          1816.2     448.8
## 2915    7  16            Fak             Jakov    SLO          1814.2     456.3
## 2916    8   4        Semenov            Sergii    UKR          1795.9     456.3
## 2917    9   7       Shipulin             Anton    RUS          1814.7     463.5
## 2918   10  27         Bailey            Lowell    USA          1818.8     482.0
## 2919   11   6           Eder             Simon    AUT          1832.0     495.7
## 2920   12  24          Burke               Tim    USA          1839.4     473.1
## 2921   13  26       Chepelin          Vladimir    BLR          1841.2     460.1
## 2922   14  15         Lesser              Erik    GER          1839.1     504.3
## 2923   15   3   Landertinger           Dominik    AUT          1856.4     458.7
## 2924   16  28        Babikov             Anton    RUS          1835.5     484.2
## 2925   17  19       Slesingr            Michal    CZE          1862.4     479.9
## 2926   18  13           Doll          Benedikt    GER          1864.8     499.3
## 2927   19  10        Schempp             Simon    GER          1856.6     499.6
## 2928   20  12 Fillon Maillet           Quentin    FRA          1841.7     468.9
## 2929   21  20          Iliev          Vladimir    BUL          1863.3     501.5
## 2930   22  18         Krcmar            Michal    CZE          1859.6     493.7
## 2931   23  11     Garanichev           Evgeniy    RUS          1874.7     476.0
## 2932   24  17      Desthieux             Simon    FRA          1873.4     491.8
## 2933   25  25           Anev          Krasimir    BUL          1879.3     510.8
## 2934   26  30   Rastorgujevs           Andrejs    LAT          1888.0     481.6
## 2935   27  23       Wiestner           Serafin    SUI          1924.7     501.2
## 2936   28   5       Svendsen        Emil Hegle    NOR          1888.0     533.7
## 2937   29  22      Savitskiy               Yan    KAZ          1977.8     535.3
## 2938    1   1       Fourcade            Martin    FRA          1582.9     421.6
## 2939    2   2    Bjoerndalen         Ole Einar    NOR          1606.1     406.5
## 2940    3  17       Svendsen        Emil Hegle    NOR          1626.0     408.4
## 2941    4   4            Boe Johannes Thingnes    NOR          1625.4     404.5
## 2942    5  39            Fak             Jakov    SLO          1637.0     391.0
## 2943    6  12      Desthieux             Simon    FRA          1646.3     397.7
## 2944    7  19         Lesser              Erik    GER          1646.0     432.5
## 2945    8   3        Semenov            Sergii    UKR          1637.2     413.4
## 2946    9  45       Shipulin             Anton    RUS          1656.7     413.3
## 2947   10  16 Fillon Maillet           Quentin    FRA          1656.4     388.6
## 2948   11   6     Garanichev           Evgeniy    RUS          1654.0     426.5
## 2949   12  15       Slesingr            Michal    CZE          1643.8     396.2
## 2950   13   7        Peiffer              Arnd    GER          1663.1     439.4
## 2951   14   9   Landertinger           Dominik    AUT          1678.8     439.7
## 2952   15  46          Smith            Nathan    CAN          1676.7     389.1
## 2953   16  27           Eder             Simon    AUT          1686.6     387.7
## 2954   17  14          Burke               Tim    USA          1679.2     434.1
## 2955   18   8        Schempp             Simon    GER          1680.8     419.9
## 2956   19  40      Savitskiy               Yan    KAZ          1682.5     399.6
## 2957   20  11       Wiestner           Serafin    SUI          1691.7     447.8
## 2958   21  23        Babikov             Anton    RUS          1698.3     424.1
## 2959   22  24         Krcmar            Michal    CZE          1709.4     427.0
## 2960   23  13       Chepelin          Vladimir    BLR          1712.6     467.7
## 2961   24  10          Iliev          Vladimir    BUL          1716.4     417.0
## 2962   25  28        Zhyrnyi         Oleksandr    UKR          1705.7     421.0
## 2963   26  36       Eberhard            Julian    AUT          1738.7     374.8
## 2964   27  20   Rastorgujevs           Andrejs    LAT          1729.3     443.7
## 2965   28   5       Windisch           Dominik    ITA          1723.2     433.5
## 2966   29  34           Anev          Krasimir    BUL          1726.8     447.4
## 2967   30  25        Otcenas            Martin    SVK          1726.1     425.1
## 2968   31  54            Boe            Tarjei    NOR          1739.5     417.7
## 2969   32  22          Pryma             Artem    UKR          1744.9     399.9
## 2970   33  35          Green           Brendan    CAN          1745.3     398.2
## 2971   34  30     Lindstroem           Fredrik    SWE          1748.1     437.1
## 2972   35  37        Lessing            Roland    EST          1738.3     410.8
## 2973   36  29         Bailey            Lowell    USA          1762.3     465.8
## 2974   37  56      Bormolini            Thomas    ITA          1760.0     400.7
## 2975   38  31          Nelin            Jesper    SWE          1768.9     482.0
## 2976   39  33           Doll          Benedikt    GER          1776.3     412.8
## 2977   40  53       Fourcade             Simon    FRA          1772.1     410.9
## 2978   41  60         Soukup          Jaroslav    CZE          1784.5     430.5
## 2979   42  49     Kletcherov           Michail    BUL          1779.9     412.5
## 2980   43  42       Tsvetkov             Maxim    RUS          1800.2     455.5
## 2981   44  57          Kazar             Matej    SVK          1804.4     416.8
## 2982   45  43        Doherty              Sean    USA          1799.2     440.6
## 2983   46  32       Darozhka        Aliaksandr    BLR          1801.4     475.5
## 2984   47  21       Kaukenas             Tomas    LTU          1832.6     429.3
## 2985   48  51     Grossegger              Sven    AUT          1811.5     450.4
## 2986   49  47            Gow             Scott    CAN          1837.9     448.9
## 2987   50  26       Puchianu            Cornel    ROU          1856.2     472.2
## 2988   51  55     Hiidensalo              Olli    FIN          1843.8     485.7
## 2989   52  18       Nordgren              Leif    USA          1855.7     455.5
## 2990   53  58         Davies              Macx    CAN          1863.7     467.3
## 2991   54  41     De Lorenzi         Christian    ITA          1899.7     424.1
## 2992   55  48         Jaeger            Martin    SUI          1925.4     454.7
## 2993   56  50          Bauer            Klemen    SLO          1917.8     480.6
## 2994   57  38           Koiv             Kauri    EST          1924.9     504.2
## 2995    1  52        Schempp             Simon    GER           962.4     479.3
## 2996    2  14    Bjoerndalen         Ole Einar    NOR           970.2     484.6
## 2997    3  17     Garanichev           Evgeniy    RUS           978.7     486.6
## 2998    4  96         Slepov            Alexey    RUS           974.4     478.3
## 2999    5  20       Fourcade            Martin    FRA           976.8     498.4
## 3000    6  28       Shipulin             Anton    RUS           985.3     499.5
## 3001    7  24 Fillon Maillet           Quentin    FRA           975.8     482.4
## 3002    8  60           Doll          Benedikt    GER           985.9     504.1
## 3003    9   8            Boe            Tarjei    NOR           989.6     497.7
## 3004   10  61         Volkov            Alexey    RUS           977.1     488.9
## 3005   11  21       Svendsen        Emil Hegle    NOR           987.4     495.9
## 3006   12  35       Tsvetkov             Maxim    RUS           989.4     490.6
## 3007   13  13      Desthieux             Simon    FRA          1003.4     504.0
## 3008   14  37          Burke               Tim    USA          1002.9     513.4
## 3009   15   7         Bailey            Lowell    USA          1003.5     500.9
## 3010   16  78       Windisch           Dominik    ITA          1001.6     507.5
## 3011   17  38          Hofer             Lukas    ITA          1006.4     493.2
## 3012   18  33          Bauer            Klemen    SLO          1000.0     503.1
## 3013   19  10        Moravec            Ondrej    CZE          1011.4     516.6
## 3014   20  36          Weger          Benjamin    SUI          1003.7     489.8
## 3015   21  69         Lesser              Erik    GER          1009.7     511.2
## 3016   22  32     Grossegger              Sven    AUT          1007.8     487.1
## 3017   23  73       Eberhard            Julian    AUT          1034.3     549.2
## 3018   24   9          Smith            Nathan    CAN          1015.5     497.8
## 3019   25  55         Soukup          Jaroslav    CZE          1018.9     523.2
## 3020   26  11     Birnbacher           Andreas    GER          1018.6     497.4
## 3021   27  64       Darozhka        Aliaksandr    BLR          1012.9     514.9
## 3022   28  15           Anev          Krasimir    BUL          1009.1     492.2
## 3023   29   1      Yaliotnau             Raman    BLR          1007.1     503.2
## 3024   30  26     Lindstroem           Fredrik    SWE          1034.1     538.2
## 3025   31  22   Rastorgujevs           Andrejs    LAT          1013.7     516.5
## 3026   32  51        Beatrix    Jean Guillaume    FRA          1021.3     526.2
## 3027   33  43       Fourcade             Simon    FRA          1019.4     497.8
## 3028   34  19         Davies              Macx    CAN          1030.9     507.8
## 3029   35  65            Gow             Scott    CAN          1031.3     528.0
## 3030   36   3            Fak             Jakov    SLO          1010.4     523.8
## 3031   37 102            Gow         Christian    CAN          1004.6     500.7
## 3032   38  12       Malyshko            Dmitry    RUS          1021.4     537.4
## 3033   39  44         Krcmar            Michal    CZE          1032.2     511.2
## 3034   40  97        Dyuzhev           Dmitriy    BLR          1020.9     520.3
## 3035   41  31       Chepelin          Vladimir    BLR          1035.4     529.6
## 3036   42  42        Peiffer              Arnd    GER          1028.3     511.7
## 3037   43  84     Pidruchnyi            Dmytro    UKR          1042.1     495.3
## 3038   44  87         Claude           Florent    FRA          1038.0     506.6
## 3039   45  27    L'Abee-Lund            Henrik    NOR          1032.1     531.8
## 3040   46  29          Green           Brendan    CAN          1043.9     536.0
## 3041   47  41          Kazar             Matej    SVK          1043.5     507.7
## 3042   48  76         Dovzan              Miha    SLO          1030.5     513.6
## 3043   49   4        Semenov            Sergii    UKR          1040.1     521.7
## 3044   50  18       Slesingr            Michal    CZE          1065.3     575.3
## 3045   51  30           Buta            George    ROU          1031.6     533.7
## 3046   52  90       Nordgren              Leif    USA          1032.1     525.2
## 3047   53  67        Armgren               Ted    SWE          1042.4     531.4
## 3048   54  39       Siemakov         Volodymyr    UKR          1030.6     529.7
## 3049   55   6       Wiestner           Serafin    SUI          1059.7     519.1
## 3050   56  46        Zhyrnyi         Oleksandr    UKR          1047.1     552.5
## 3051   57  50         Jaeger            Martin    SUI          1058.1     545.5
## 3052   58  45          Iliev          Vladimir    BUL          1061.4     542.2
## 3053   59  85     Gustafsson            Daniel    SWE          1029.1     519.0
## 3054   60  53        Otcenas            Martin    SVK          1072.0     532.9
## 3055   61  56          Guzik          Grzegorz    POL          1050.6     516.9
## 3056   62  93     Kletcherov           Michail    BUL          1049.0     522.6
## 3057   63  40      Savitskiy               Yan    KAZ          1053.4     549.3
## 3058   64  34            Boe Johannes Thingnes    NOR          1082.5     553.1
## 3059   65  70           Koiv             Kauri    EST          1050.3     521.7
## 3060   66 106          Boehm            Daniel    GER          1046.3     520.3
## 3061   67  58         Ermits             Kalev    EST          1087.8     516.2
## 3062   68 101        Lessing            Roland    EST          1053.5     535.2
## 3063   69  62       Puchianu            Cornel    ROU          1062.6     535.7
## 3064   70  98          Trsan               Rok    SLO          1074.3     518.3
## 3065   71  63        Doherty              Sean    USA          1091.5     522.6
## 3066   72  68     Dombrovski             Karol    LTU          1068.6     561.1
## 3067   73  23        Hasilla             Tomas    SVK          1065.4     535.2
## 3068   74 105        Remmelg            Martin    EST          1059.3     530.0
## 3069   75  66          Janik           Mateusz    POL          1056.8     518.4
## 3070   76 104        Krupcik             Tomas    CZE          1073.4     550.4
## 3071   77  95          Pryma             Artem    UKR          1087.4     571.1
## 3072   78  81        Finello            Jeremy    SUI          1076.5     538.3
## 3073   79  79        Sinapov             Anton    BUL          1079.8     538.9
## 3074   80   5     De Lorenzi         Christian    ITA          1095.4     560.8
## 3075   81  57          Dixon             Scott    GBR          1090.0     528.8
## 3076   82  48        Femling             Peppe    SWE          1113.5     576.6
## 3077   83  88         Pinter         Friedrich    AUT          1115.6     566.0
## 3078   84  86        Deksnis             Ingus    LAT          1083.9     542.7
## 3079   85  92           Faur             Remus    ROU          1092.0     548.4
## 3080   86  82         Joller              Ivan    SUI          1105.6     585.9
## 3081   87   2       Kaukenas             Tomas    LTU          1102.1     570.8
## 3082   88  99       Kobonoki           Tsukasa    JPN          1103.0     530.8
## 3083   89  94     Podkorytov          Vassiliy    KAZ          1113.6     564.1
## 3084   90  80          Oblak            Lenart    SLO          1116.6     546.1
## 3085   91  83          Penar             Rafal    POL          1080.6     561.1
## 3086   92  54        Slotins           Roberts    LAT          1102.9     574.8
## 3087   93  59          Braun             Maxim    KAZ          1110.9     571.4
## 3088   94  72      Tachizaki            Mikito    JPN          1135.8     540.3
## 3089   95  77  Loukkaanhuhta             Mikko    FIN          1081.2     557.6
## 3090   96  47         Roesch           Michael    BEL          1127.1     587.1
## 3091   97  89           Sima            Michal    SVK          1125.5     578.2
## 3092   98  75            Kim           Yonggyu    KOR          1141.3     576.4
## 3093   99  71         Morton             Damon    AUS          1147.3     584.0
## 3094  100  91        Strolia          Vytautas    LTU          1162.3     598.8
## 3095  101  49         Rastic             Damir    SRB          1154.0     609.9
## 3096  102 100       Koivunen            Mikael    FIN          1225.7     629.6
## 3097    1  25        Beatrix    Jean Guillaume    FRA          1762.3     442.1
## 3098    2   5       Svendsen        Emil Hegle    NOR          1762.0     421.7
## 3099    3   2    Bjoerndalen         Ole Einar    NOR          1761.6     417.9
## 3100    4   3        Schempp             Simon    GER          1766.2     424.7
## 3101    5  11     Birnbacher           Andreas    GER          1763.0     423.7
## 3102    6  10      Desthieux             Simon    FRA          1770.9     441.6
## 3103    7   1       Fourcade            Martin    FRA          1786.7     421.8
## 3104    8  13            Boe Johannes Thingnes    NOR          1783.7     427.1
## 3105    9  28       Windisch           Dominik    ITA          1788.2     433.5
## 3106   10   4 Fillon Maillet           Quentin    FRA          1780.1     464.6
## 3107   11   7       Shipulin             Anton    RUS          1783.3     441.3
## 3108   12  12          Smith            Nathan    CAN          1784.9     444.2
## 3109   13  16        Peiffer              Arnd    GER          1775.9     430.0
## 3110   14   8     Garanichev           Evgeniy    RUS          1802.6     479.3
## 3111   15  15         Slepov            Alexey    RUS          1805.2     444.7
## 3112   16  27         Lesser              Erik    GER          1800.0     445.7
## 3113   17  24   Landertinger           Dominik    AUT          1813.7     448.3
## 3114   18   6            Boe            Tarjei    NOR          1818.5     437.8
## 3115   19  18     Lindstroem           Fredrik    SWE          1817.3     490.1
## 3116   20  14       Malyshko            Dmitry    RUS          1812.6     441.0
## 3117   21  21       Fourcade             Simon    FRA          1814.7     468.1
## 3118   22  26          Burke               Tim    USA          1845.7     457.9
## 3119   23  19         Bailey            Lowell    USA          1838.1     473.5
## 3120   24  23     Pidruchnyi            Dmytro    UKR          1839.4     465.4
## 3121   25   9           Doll          Benedikt    GER          1860.0     466.8
## 3122   26  17       Tsvetkov             Maxim    RUS          1853.7     473.7
## 3123   27  30       Eberhard            Julian    AUT          1872.8     463.5
## 3124   28  20         Volkov            Alexey    RUS          1875.2     462.8
## 3125   29  22        Moravec            Ondrej    CZE          1921.7     483.3
## 3126   30  29          Bauer            Klemen    SLO          1909.1     523.6
## 3127    1   1        Schempp             Simon    GER          1513.0     377.8
## 3128    2   5       Fourcade            Martin    FRA          1531.4     395.8
## 3129    3   6       Shipulin             Anton    RUS          1557.2     378.9
## 3130    4   9            Boe            Tarjei    NOR          1554.5     397.8
## 3131    5   7 Fillon Maillet           Quentin    FRA          1558.5     381.0
## 3132    6   3     Garanichev           Evgeniy    RUS          1581.5     400.9
## 3133    7  11       Svendsen        Emil Hegle    NOR          1582.0     402.9
## 3134    8   2    Bjoerndalen         Ole Einar    NOR          1575.9     410.1
## 3135    9  14          Burke               Tim    USA          1599.9     388.6
## 3136   10  33       Fourcade             Simon    FRA          1606.7     392.3
## 3137   11  26     Birnbacher           Andreas    GER          1619.7     385.3
## 3138   12  21         Lesser              Erik    GER          1611.7     392.9
## 3139   13   8           Doll          Benedikt    GER          1631.5     427.1
## 3140   14  30     Lindstroem           Fredrik    SWE          1629.3     394.0
## 3141   15  32        Beatrix    Jean Guillaume    FRA          1630.0     410.9
## 3142   16  10         Volkov            Alexey    RUS          1621.0     388.4
## 3143   17  12       Tsvetkov             Maxim    RUS          1623.1     410.4
## 3144   18  16       Windisch           Dominik    ITA          1640.5     404.0
## 3145   19  43     Pidruchnyi            Dmytro    UKR          1652.4     405.0
## 3146   20  18          Bauer            Klemen    SLO          1633.3     416.0
## 3147   21  31   Rastorgujevs           Andrejs    LAT          1650.1     407.8
## 3148   22  28           Anev          Krasimir    BUL          1652.9     409.4
## 3149   23  23       Eberhard            Julian    AUT          1666.8     406.7
## 3150   24  13      Desthieux             Simon    FRA          1663.8     421.8
## 3151   25   4         Slepov            Alexey    RUS          1682.3     404.8
## 3152   26  19        Moravec            Ondrej    CZE          1675.6     387.0
## 3153   27  42        Peiffer              Arnd    GER          1664.5     393.7
## 3154   28  27       Darozhka        Aliaksandr    BLR          1673.5     390.6
## 3155   29  15         Bailey            Lowell    USA          1676.6     419.7
## 3156   30  46          Green           Brendan    CAN          1691.9     431.5
## 3157   31  36            Fak             Jakov    SLO          1687.2     408.9
## 3158   32  17          Hofer             Lukas    ITA          1693.8     435.1
## 3159   33  38       Malyshko            Dmitry    RUS          1694.8     411.5
## 3160   34  25         Soukup          Jaroslav    CZE          1700.9     401.9
## 3161   35  24          Smith            Nathan    CAN          1713.8     405.9
## 3162   36  50       Slesingr            Michal    CZE          1714.6     413.4
## 3163   37  58          Iliev          Vladimir    BUL          1714.1     428.3
## 3164   38  20          Weger          Benjamin    SUI          1725.1     440.0
## 3165   39  49        Semenov            Sergii    UKR          1728.6     389.3
## 3166   40  56        Zhyrnyi         Oleksandr    UKR          1734.9     395.2
## 3167   41  47          Kazar             Matej    SVK          1731.0     449.3
## 3168   42  51           Buta            George    ROU          1743.5     410.5
## 3169   43  39         Krcmar            Michal    CZE          1762.9     466.6
## 3170   44  41       Chepelin          Vladimir    BLR          1756.3     435.4
## 3171   45  35            Gow             Scott    CAN          1762.4     411.9
## 3172   46  22     Grossegger              Sven    AUT          1763.5     423.5
## 3173   47  45    L'Abee-Lund            Henrik    NOR          1752.9     422.1
## 3174   48  55       Wiestner           Serafin    SUI          1778.8     452.3
## 3175   49  52       Nordgren              Leif    USA          1781.5     437.0
## 3176   50  44         Claude           Florent    FRA          1794.6     408.9
## 3177   51  60        Otcenas            Martin    SVK          1783.4     446.2
## 3178   52  40        Dyuzhev           Dmitriy    BLR          1815.1     433.4
## 3179   53  57         Jaeger            Martin    SUI          1811.0     407.8
## 3180   54  54       Siemakov         Volodymyr    UKR          1837.5     404.2
## 3181   55  53        Armgren               Ted    SWE          1840.2     482.1
## 3182   56  29      Yaliotnau             Raman    BLR          1868.2     436.4
## 3183   57  34         Davies              Macx    CAN          1863.2     424.1
## 3184   58  59     Gustafsson            Daniel    SWE          1907.1     441.1
## 3185   59  48         Dovzan              Miha    SLO          1945.6     551.9
## 3186    1  25            Boe Johannes Thingnes    NOR          1015.9     511.2
## 3187    2  16       Shipulin             Anton    RUS          1043.6     527.5
## 3188    3   3       Fourcade            Martin    FRA          1051.4     539.3
## 3189    4  54         Lesser              Erik    GER          1060.2     534.7
## 3190    5  13       Wiestner           Serafin    SUI          1065.1     552.0
## 3191    6  30          Weger          Benjamin    SUI          1062.6     547.5
## 3192    7  31   Rastorgujevs           Andrejs    LAT          1044.1     535.8
## 3193    8  32            Boe            Tarjei    NOR          1069.4     552.4
## 3194    9   8        Peiffer              Arnd    GER          1071.6     554.4
## 3195   10   2   Bjoentegaard            Erlend    NOR          1079.4     553.8
## 3196   11   5           Eder             Simon    AUT          1067.8     530.5
## 3197   12  12           Doll          Benedikt    GER          1085.3     571.0
## 3198   13  42        Doherty              Sean    USA          1073.2     552.3
## 3199   14  10       Slesingr            Michal    CZE          1083.7     534.0
## 3200   15  36         Bailey            Lowell    USA          1085.8     562.6
## 3201   16  17          Pryma             Artem    UKR          1084.5     540.4
## 3202   17  55             Os         Alexander    NOR          1082.7     552.5
## 3203   18  23          Kazar             Matej    SVK          1088.8     539.5
## 3204   19  68         Ermits             Kalev    EST          1084.1     559.8
## 3205   20   6          Burke               Tim    USA          1098.4     554.9
## 3206   21   1          Iliev          Vladimir    BUL          1104.8     544.0
## 3207   22  33          Hofer             Lukas    ITA          1095.7     563.4
## 3208   23  26     Birnbacher           Andreas    GER          1086.1     536.2
## 3209   24  59         Dolder             Mario    SUI          1083.5     567.3
## 3210   25  14      Savitskiy               Yan    KAZ          1083.5     536.7
## 3211   26  89         Liadov             Yuryi    BLR          1099.8     565.3
## 3212   27   7       Eberhard            Julian    AUT          1133.0     591.1
## 3213   28  53    Povarnitsyn         Alexander    RUS          1108.5     557.3
## 3214   29  35         Krcmar            Michal    CZE          1118.0     564.5
## 3215   30  81         Waeger            Lorenz    AUT          1093.2     554.2
## 3216   31  39        Zhyrnyi         Oleksandr    UKR          1115.4     588.0
## 3217   32  22          Bauer            Klemen    SLO          1117.0     558.8
## 3218   33  18 Fillon Maillet           Quentin    FRA          1105.9     576.7
## 3219   34   4       Windisch           Dominik    ITA          1131.6     572.6
## 3220   35  21        Semenov            Sergii    UKR          1121.9     530.1
## 3221   36  24       Chepelin          Vladimir    BLR          1118.6     599.4
## 3222   37  29      Birkeland        Lars Helge    NOR          1112.0     586.6
## 3223   38  19       Fourcade             Simon    FRA          1120.6     583.1
## 3224   39  34     Grossegger              Sven    AUT          1122.6     591.1
## 3225   40  64         Jaeger            Martin    SUI          1137.1     566.7
## 3226   41  40          Trsan               Rok    SLO          1117.0     540.3
## 3227   42  77     De Lorenzi         Christian    ITA          1114.2     561.4
## 3228   43  11       Tsvetkov             Maxim    RUS          1115.5     555.8
## 3229   44  43        Beatrix    Jean Guillaume    FRA          1113.9     560.8
## 3230   45  70       Malyshko            Dmitry    RUS          1127.9     582.0
## 3231   46  37     Lindstroem           Fredrik    SWE          1113.9     563.0
## 3232   47  69           Sima            Michal    SVK          1110.2     564.3
## 3233   48  52         Perras             Scott    CAN          1139.9     578.3
## 3234   49  73        Rusinov            Dmytro    UKR          1126.8     599.5
## 3235   50  80     Podkorytov          Vassiliy    KAZ          1126.0     563.1
## 3236   51  47        Armgren               Ted    SWE          1133.5     573.7
## 3237   52  27      Desthieux             Simon    FRA          1147.1     558.0
## 3238   53  78        Sinapov             Anton    BUL          1138.1     602.1
## 3239   54  82          Boehm            Daniel    GER          1139.8     576.4
## 3240   55  15      Yaliotnau             Raman    BLR          1165.8     614.4
## 3241   56  44        Gronman            Tuomas    FIN          1139.4     584.8
## 3242   56  72         Dovzan              Miha    SLO          1136.2     588.5
## 3243   58  48      Bormolini            Thomas    ITA          1139.0     561.3
## 3244   59  61       Toivanen              Ahti    FIN          1149.7     546.1
## 3245   60  86          Nagai             Junji    JPN          1138.8     576.2
## 3246   61  92           Faur             Remus    ROU          1140.6     583.0
## 3247   62  41          Guzik          Grzegorz    POL          1153.9     575.9
## 3248   63  58       Puchianu            Cornel    ROU          1145.1     552.5
## 3249   64  57        Strolia          Vytautas    LTU          1155.7     578.6
## 3250   65  76       Nordgren              Leif    USA          1154.9     577.7
## 3251   66  28         Volkov            Alexey    RUS          1109.6     575.0
## 3252   67  83         Zahkna              Rene    EST          1159.5     611.7
## 3253   68  56         Pantov             Anton    KAZ          1165.6     572.3
## 3254   69  49        Krupcik             Tomas    CZE          1164.0     603.6
## 3255   70  85       Szczurek            Lukasz    POL          1160.9     613.1
## 3256   71  45         Komatz             David    AUT          1164.5     580.6
## 3257   72  67        Dyuzhev           Dmitriy    BLR          1197.2     591.4
## 3258   73  88       Arwidson            Tobias    SWE          1158.5     571.9
## 3259   74  63         Treier               Jan    EST          1170.6     617.5
## 3260   75  51     Gerdzhikov           Dimitar    BUL          1194.5     603.6
## 3261   76  38           Buta            George    ROU          1182.7     614.4
## 3262   77  46       Matiasko          Miroslav    SVK          1192.1     602.9
## 3263   78  50       Campbell            Carsen    CAN          1186.6     589.1
## 3264   79  91         Kornev            Alexey    RUS          1187.0     620.7
## 3265   80  65      Tachizaki            Mikito    JPN          1191.7     606.0
## 3266   81  66     Kletcherov           Michail    BUL          1216.6     575.8
## 3267   82  90        Neumann           Matthew    CAN          1223.1     633.8
## 3268   83  62    Kilchytskyy           Vitaliy    UKR          1234.0     630.1
## 3269   84  60            Lee             Inbok    KOR          1239.5     629.0
## 3270   85  79         Hakala             Matti    FIN          1225.7     613.4
## 3271   86  75    Suslavicius             Rokas    LTU          1200.4     621.9
## 3272   87  87       Kubaliak            Michal    SVK          1235.9     618.5
## 3273   88  74          Hudec           Matthew    CAN          1230.5     628.6
## 3274    1   3       Fourcade            Martin    FRA          1544.2     371.7
## 3275    2   1            Boe Johannes Thingnes    NOR          1552.1     423.7
## 3276    3   2       Shipulin             Anton    RUS          1591.5     406.2
## 3277    4  11           Eder             Simon    AUT          1636.7     409.4
## 3278    5  10   Bjoentegaard            Erlend    NOR          1649.8     420.6
## 3279    6  14       Slesingr            Michal    CZE          1666.8     412.5
## 3280    7  20          Burke               Tim    USA          1670.9     442.5
## 3281    8  21          Iliev          Vladimir    BUL          1678.8     374.9
## 3282    9  16          Pryma             Artem    UKR          1672.5     413.1
## 3283   10  28    Povarnitsyn         Alexander    RUS          1688.6     407.4
## 3284   11  19         Ermits             Kalev    EST          1685.0     438.6
## 3285   12  12           Doll          Benedikt    GER          1707.1     405.1
## 3286   13   4         Lesser              Erik    GER          1699.6     475.3
## 3287   14  15         Bailey            Lowell    USA          1707.4     403.9
## 3288   15  23     Birnbacher           Andreas    GER          1707.8     403.5
## 3289   16  31        Zhyrnyi         Oleksandr    UKR          1712.6     409.7
## 3290   17   6          Weger          Benjamin    SUI          1727.6     439.5
## 3291   18  18          Kazar             Matej    SVK          1723.4     415.6
## 3292   19   8            Boe            Tarjei    NOR          1728.2     431.8
## 3293   20  13        Doherty              Sean    USA          1724.8     403.9
## 3294   21   7   Rastorgujevs           Andrejs    LAT          1736.0     484.4
## 3295   22  27       Eberhard            Julian    AUT          1757.0     444.6
## 3296   23  39     Grossegger              Sven    AUT          1741.9     435.0
## 3297   24  24         Dolder             Mario    SUI          1753.6     428.5
## 3298   25  35        Semenov            Sergii    UKR          1755.3     388.9
## 3299   26  32          Bauer            Klemen    SLO          1765.4     426.8
## 3300   27   5       Wiestner           Serafin    SUI          1779.3     413.6
## 3301   28  29         Krcmar            Michal    CZE          1767.1     391.9
## 3302   29  36       Chepelin          Vladimir    BLR          1774.3     415.3
## 3303   30  37      Birkeland        Lars Helge    NOR          1762.7     398.9
## 3304   31  17             Os         Alexander    NOR          1775.5     445.0
## 3305   32  44        Beatrix    Jean Guillaume    FRA          1801.3     389.6
## 3306   33  49        Rusinov            Dmytro    UKR          1792.9     417.1
## 3307   34  26         Liadov             Yuryi    BLR          1802.7     439.4
## 3308   35  38       Fourcade             Simon    FRA          1826.1     414.7
## 3309   36  25      Savitskiy               Yan    KAZ          1815.4     472.0
## 3310   37  54          Boehm            Daniel    GER          1820.7     429.8
## 3311   38  22          Hofer             Lukas    ITA          1838.3     450.2
## 3312   39  52      Desthieux             Simon    FRA          1862.2     488.9
## 3313   40  58      Bormolini            Thomas    ITA          1856.8     469.1
## 3314   41  41          Trsan               Rok    SLO          1866.3     413.8
## 3315   42  42     De Lorenzi         Christian    ITA          1865.7     416.9
## 3316   43  60          Nagai             Junji    JPN          1854.0     429.5
## 3317   44  34       Windisch           Dominik    ITA          1891.4     431.2
## 3318   45  30         Waeger            Lorenz    AUT          1868.8     501.7
## 3319   46  59       Toivanen              Ahti    FIN          1875.5     479.8
## 3320   47  48         Perras             Scott    CAN          1892.0     442.7
## 3321   48  47           Sima            Michal    SVK          1896.2     447.9
## 3322   49  50     Podkorytov          Vassiliy    KAZ          1914.8     479.5
## 3323   50  57         Dovzan              Miha    SLO          1906.1     431.5
## 3324   51  55      Yaliotnau             Raman    BLR          1929.8     495.2
## 3325   52  56        Gronman            Tuomas    FIN          1934.0     463.8
## 3326   53  40         Jaeger            Martin    SUI          1946.5     481.4
## 3327    1   8            Boe Johannes Thingnes    NOR           912.6     457.8
## 3328    2   5            Boe            Tarjei    NOR           919.5     461.1
## 3329    3  26       Svendsen        Emil Hegle    NOR           923.9     460.7
## 3330    4  39       Fourcade            Martin    FRA           930.1     453.5
## 3331    5  49     Grossegger              Sven    AUT           926.6     466.3
## 3332    6   3           Eder             Simon    AUT           930.5     469.2
## 3333    7  21   Landertinger           Dominik    AUT           952.3     479.8
## 3334    8  14       Slesingr            Michal    CZE           948.1     474.3
## 3335    9  18     Birnbacher           Andreas    GER           946.5     482.8
## 3336   10  25     Pidruchnyi            Dmytro    UKR           962.3     491.5
## 3337   11  30        Peiffer              Arnd    GER           953.9     487.6
## 3338   12  44         Krcmar            Michal    CZE           955.4     474.8
## 3339   13  13        Moravec            Ondrej    CZE           960.1     470.1
## 3340   14  24   Rastorgujevs           Andrejs    LAT           957.0     468.5
## 3341   15   7          Smith            Nathan    CAN           963.3     506.1
## 3342   16  33       Eberhard            Julian    AUT           975.3     498.3
## 3343   17  73   Bjoentegaard            Erlend    NOR           958.2     482.6
## 3344   18  11          Burke               Tim    USA           963.5     492.7
## 3345   19  42     Lindstroem           Fredrik    SWE           964.5     492.4
## 3346   20  37          Iliev          Vladimir    BUL           961.2     479.4
## 3347   21  35      Desthieux             Simon    FRA           965.5     484.2
## 3348   22  36        Zhyrnyi         Oleksandr    UKR           954.7     478.5
## 3349   23  20           Anev          Krasimir    BUL           957.1     481.7
## 3350   24  15       Wiestner           Serafin    SUI           974.8     498.8
## 3351   25   1        Semenov            Sergii    UKR           965.9     483.2
## 3352   26  48      Birkeland        Lars Helge    NOR           980.4     475.7
## 3353   26  57    Kilchytskyy           Vitaliy    UKR           970.8     499.9
## 3354   28  16       Shipulin             Anton    RUS           983.7     496.7
## 3355   29  58       Fourcade             Simon    FRA           981.3     484.6
## 3356   30  67       Tsvetkov             Maxim    RUS           977.9     486.0
## 3357   31  29 Fillon Maillet           Quentin    FRA           984.8     512.2
## 3358   32  10        Beatrix    Jean Guillaume    FRA           982.1     512.2
## 3359   33  40         Bailey            Lowell    USA           975.5     495.3
## 3360   34  52            Gow         Christian    CAN           967.7     487.8
## 3361   35  31       Chepelin          Vladimir    BLR           989.1     496.7
## 3362   36  98    Bocharnikov            Sergey    BLR           964.8     485.8
## 3363   37   2       Malyshko            Dmitry    RUS           986.3     470.1
## 3364   38  22      Yaliotnau             Raman    BLR           981.8     480.3
## 3365   39  34          Weger          Benjamin    SUI           990.9     474.1
## 3366   40  19     Garanichev           Evgeniy    RUS           991.4     521.0
## 3367   41  63         Lesser              Erik    GER           982.2     505.7
## 3368   42  87      Bormolini            Thomas    ITA           980.5     503.1
## 3369   43  43        Otcenas            Martin    SVK          1002.4     531.0
## 3370   44  81        Eliseev            Matvey    RUS           993.9     490.7
## 3371   45  88             Os         Alexander    NOR           989.6     495.7
## 3372   46  69     Podkorytov          Vassiliy    KAZ           974.7     498.4
## 3373   47  28            Gow             Scott    CAN           995.5     495.6
## 3374   48  93          Boehm            Daniel    GER           978.6     484.2
## 3375   48 102         Komatz             David    AUT           990.7     489.7
## 3376   50  53          Janik           Mateusz    POL           976.2     489.1
## 3377   51  89      Guigonnat           Antonin    FRA          1003.2     481.6
## 3378   52  62           Koiv             Kauri    EST           990.3     508.5
## 3379   53  41          Hofer             Lukas    ITA          1000.2     480.2
## 3380   54  60        Krupcik             Tomas    CZE           985.0     506.0
## 3381   55  45         Davies              Macx    CAN           999.8     504.0
## 3382   56  46         Slepov            Alexey    RUS          1008.5     501.6
## 3383   57  55     Dombrovski             Karol    LTU          1002.0     528.3
## 3384   58  83        Finello            Jeremy    SUI           981.9     492.7
## 3385   59  65      Stenersen          Torstein    SWE           995.5     500.6
## 3386   60  95       Matiasko          Miroslav    SVK           989.3     498.7
## 3387   61  17           Doll          Benedikt    GER          1027.2     546.7
## 3388   62  50         Dolder             Mario    SUI           992.8     490.3
## 3389   63  54     De Lorenzi         Christian    ITA          1006.4     533.4
## 3390   64  76           Faur             Remus    ROU           997.8     502.9
## 3391   65   6       Windisch           Dominik    ITA          1030.0     503.2
## 3392   66  32          Bauer            Klemen    SLO          1006.3     501.4
## 3393   67  72        Dyuzhev           Dmitriy    BLR          1014.4     525.5
## 3394   68 103       Puchianu            Cornel    ROU          1015.1     529.9
## 3395   69  23          Kazar             Matej    SVK          1018.3     514.5
## 3396   70   4           Buta            George    ROU          1005.2     516.7
## 3397   71  82       Siemakov         Volodymyr    UKR          1025.8     497.8
## 3398   72  78         Ermits             Kalev    EST          1022.5     504.1
## 3399   72  86         Perras             Scott    CAN          1018.2     488.1
## 3400   74  59        Strolia          Vytautas    LTU          1026.2     525.1
## 3401   75  96       Vaclavik              Adam    CZE          1027.8     530.2
## 3402   76  79         Orpana              Sami    FIN          1014.2     519.7
## 3403   77  74     Gerdzhikov           Dimitar    BUL          1013.5     517.7
## 3404   78  61        Hasilla             Tomas    SVK          1027.6     541.3
## 3405   79 100      Tachizaki            Mikito    JPN          1017.3     523.8
## 3406   80 104         Dovzan              Miha    SLO          1015.2     519.4
## 3407   81  47          Braun             Maxim    KAZ          1027.6     518.1
## 3408   82  27          Nelin            Jesper    SWE          1052.3     509.2
## 3409   83  56        Gronman            Tuomas    FIN          1034.2     494.3
## 3410   84   9      Savitskiy               Yan    KAZ          1034.1     528.4
## 3411   85  66            Kim           Jongmin    KOR          1027.9     530.5
## 3412   86  68          Oblak            Lenart    SLO          1052.8     538.0
## 3413   87  77          Trsan               Rok    SLO          1052.2     552.7
## 3414   88  71          Guzik          Grzegorz    POL          1051.4     512.8
## 3415   89  75        Deksnis             Ingus    LAT          1039.6     521.8
## 3416   90  80          Nagai             Junji    JPN          1054.2     538.2
## 3417   91  90       Szczurek            Lukasz    POL          1047.2     550.0
## 3418   92  85         Zahkna              Rene    EST          1063.9     504.5
## 3419   93  97       Partalov           Dimitar    BUL          1055.5     518.2
## 3420   94  64       Crnkovic          Kresimir    CRO          1092.3     560.0
## 3421   95 101        Femling             Peppe    SWE          1052.2     511.3
## 3422   96  38         Soukup          Jaroslav    CZE          1101.0     546.1
## 3423   97  99        Slotins           Roberts    LAT          1085.7     533.0
## 3424   98  51         Jaeger            Martin    SUI          1117.4     588.9
## 3425   99  91         Treier               Jan    EST          1090.3     566.1
## 3426  100  92    Suslavicius             Rokas    LTU          1097.3     584.6
## 3427  101  84       Laponder            Marcel    GBR          1105.0     543.5
## 3428  102  70          Dixon             Scott    GBR          1143.1     563.7
## 3429    1  46       Fourcade            Martin    FRA          2604.9     500.9
## 3430    2  76           Eder             Simon    AUT          2612.7     580.3
## 3431    3  21       Shipulin             Anton    RUS          2622.8     512.3
## 3432    4  37        Moravec            Ondrej    CZE          2626.3     522.4
## 3433    5  44       Tsvetkov             Maxim    RUS          2644.6     525.8
## 3434    6  23     Garanichev           Evgeniy    RUS          2658.9     566.2
## 3435    7  66      Stenersen          Torstein    SWE          2692.6     589.5
## 3436    8  47           Doll          Benedikt    GER          2720.5     513.2
## 3437    9  64   Bjoentegaard            Erlend    NOR          2721.2     582.8
## 3438   10  71         Krcmar            Michal    CZE          2725.0     534.2
## 3439   11  36            Boe            Tarjei    NOR          2748.8     588.5
## 3440   12  40           Anev          Krasimir    BUL          2731.7     586.8
## 3441   13  53          Hofer             Lukas    ITA          2725.9     544.4
## 3442   14  25         Bailey            Lowell    USA          2750.0     533.8
## 3443   15  19     Birnbacher           Andreas    GER          2766.2     515.0
## 3444   16  57            Boe Johannes Thingnes    NOR          2772.3     690.7
## 3445   17  58         Lesser              Erik    GER          2784.6     517.1
## 3446   18  59          Green           Brendan    CAN          2772.8     541.4
## 3447   19  69    Kilchytskyy           Vitaliy    UKR          2768.0     611.1
## 3448   20  48          Kazar             Matej    SVK          2772.6     530.2
## 3449   21  82          Kuehn          Johannes    GER          2805.1     583.9
## 3450   22 104         Komatz             David    AUT          2776.6     642.4
## 3451   23  27     Lindstroem           Fredrik    SWE          2806.0     603.1
## 3452   24  29   Landertinger           Dominik    AUT          2806.3     642.4
## 3453   25  17      Birkeland        Lars Helge    NOR          2790.3     596.8
## 3454   26   4        Zhyrnyi         Oleksandr    UKR          2780.7     547.7
## 3455   27  99       Nordgren              Leif    USA          2787.0     649.8
## 3456   28  22 Fillon Maillet           Quentin    FRA          2781.0     655.8
## 3457   29  26       Svendsen        Emil Hegle    NOR          2811.7     579.6
## 3458   30  54          Burke               Tim    USA          2809.6     593.1
## 3459   31  34       Windisch           Dominik    ITA          2814.9     520.1
## 3460   32   2         Volkov            Alexey    RUS          2813.7     541.3
## 3461   33  41       Slesingr            Michal    CZE          2825.1     592.7
## 3462   34  93         Zahkna              Rene    EST          2816.4     538.3
## 3463   35  95       Matiasko          Miroslav    SVK          2829.6     598.0
## 3464   36  32            Fak             Jakov    SLO          2841.0     577.6
## 3465   37   5      Savitskiy               Yan    KAZ          2812.3     624.3
## 3466   38  50        Dyuzhev           Dmitriy    BLR          2839.5     583.9
## 3467   39   9     De Lorenzi         Christian    ITA          2833.6     596.0
## 3468   40  65        Finello            Jeremy    SUI          2832.5     600.9
## 3469   41  86       Vaclavik              Adam    CZE          2845.9     720.3
## 3470   42  94      Bormolini            Thomas    ITA          2830.2     602.5
## 3471   43  20     Pidruchnyi            Dmytro    UKR          2795.8     617.3
## 3472   44  30    Bjoerndalen         Ole Einar    NOR          2864.8     571.5
## 3473   45  91     Gerdzhikov           Dimitar    BUL          2825.5     564.4
## 3474   46  96            Gow         Christian    CAN          2815.0     559.9
## 3475   47 105       Szczurek            Lukasz    POL          2836.3     558.4
## 3476   48  18       Fourcade             Simon    FRA          2850.1     538.8
## 3477   49  42   Rastorgujevs           Andrejs    LAT          2875.4     587.5
## 3478   50  77          Trsan               Rok    SLO          2849.0     604.6
## 3479   51  45          Smith            Nathan    CAN          2844.6     527.7
## 3480   52  38         Davies              Macx    CAN          2864.4     557.8
## 3481   53  55        Krupcik             Tomas    CZE          2848.8     609.0
## 3482   54  16          Nelin            Jesper    SWE          2868.7     533.7
## 3483   55  13       Eberhard            Julian    AUT          2906.0     654.9
## 3484   56  39     Grossegger              Sven    AUT          2866.9     523.7
## 3485   57  84      Tcherezov              Ivan    RUS          2879.8     535.8
## 3486   58  70          Guzik          Grzegorz    POL          2879.6     604.2
## 3487   59  35        Semenov            Sergii    UKR          2887.6     648.3
## 3488   60  33       Chepelin          Vladimir    BLR          2906.0     588.7
## 3489   61  63        Beatrix    Jean Guillaume    FRA          2887.4     602.7
## 3490   62   6        Peiffer              Arnd    GER          2917.5     607.1
## 3491   63  97          Nagai             Junji    JPN          2926.4     575.6
## 3492   64 100        Strolia          Vytautas    LTU          2928.6     670.5
## 3493   65  90        Abasheu           Dzmitry    BLR          2938.3     660.2
## 3494   66  79      Plywaczyk         Krzysztof    POL          2926.9     689.5
## 3495   67   1          Iliev          Vladimir    BUL          2951.9     615.3
## 3496   68  75     Kletcherov           Michail    BUL          2945.0     676.3
## 3497   69  61        Otcenas            Martin    SVK          2975.6     599.2
## 3498   70  56           Faur             Remus    ROU          2951.9     689.0
## 3499   71   7      Guigonnat           Antonin    FRA          2983.6     729.2
## 3500   72  74       Malyshko            Dmitry    RUS          2996.5     514.1
## 3501   73  81          Dixon             Scott    GBR          2987.8     591.9
## 3502   74  60           Koiv             Kauri    EST          2983.6     548.5
## 3503   75  11        Doherty              Sean    USA          2982.8     556.3
## 3504   76  80     Podkorytov          Vassiliy    KAZ          2981.8     557.7
## 3505   77  51         Ermits             Kalev    EST          3018.4     645.5
## 3506   78  67      Tachizaki            Mikito    JPN          3000.6     632.4
## 3507   79  88         Pantov             Anton    KAZ          3015.9     730.4
## 3508   80  78     Dombrovski             Karol    LTU          3004.4     628.3
## 3509   81  52        Gronman            Tuomas    FIN          3013.4     633.1
## 3510   82  28           Buta            George    ROU          3029.2     686.0
## 3511   83  83        Armgren               Ted    SWE          3032.6     606.9
## 3512   84   8       Wiestner           Serafin    SUI          3045.7     628.2
## 3513   85  31          Weger          Benjamin    SUI          3048.8     536.1
## 3514   86  72         Dolder             Mario    SUI          3059.2     613.2
## 3515   87  68           Lusa          Daumants    LAT          3049.0     747.1
## 3516   88 103         Treier               Jan    EST          3076.8     584.3
## 3517   89  73         Dovzan              Miha    SLO          3083.5     605.5
## 3518   90  49         Orpana              Sami    FIN          3079.3     619.5
## 3519   91  62            Kim           Jongmin    KOR          3088.5     683.5
## 3520   92   3       Darozhka        Aliaksandr    BLR          3108.6     689.3
## 3521   93  15         Soukup          Jaroslav    CZE          3148.3     661.2
## 3522   94  89       Puchianu            Cornel    ROU          3131.0     663.2
## 3523   95  43       Kaukenas             Tomas    LTU          3183.8     610.9
## 3524   96 101         Claude            Fabien    FRA          3215.8     758.6
## 3525   97  87         Jaeger            Martin    SUI          3206.4     590.7
## 3526   98  92       Koivunen            Mikael    FIN          3138.5     663.9
## 3527   99 106       Laponder            Marcel    GBR          3178.0     668.9
## 3528  100  10            Gow             Scott    CAN          3251.3     670.8
## 3529  101  98        Slotins           Roberts    LAT          3315.2     708.6
## 3530  102  14        Hasilla             Tomas    SVK          3334.0     826.1
## 3531  103  85          Oblak            Lenart    SLO          3338.0     709.6
## 3532    1  30         Lesser              Erik    GER          1980.4     499.2
## 3533    2   1       Fourcade            Martin    FRA          1992.7     513.2
## 3534    3   7     Garanichev           Evgeniy    RUS          1993.3     512.8
## 3535    4   5       Shipulin             Anton    RUS          2015.5     507.4
## 3536    5  28         Krcmar            Michal    CZE          2040.1     518.2
## 3537    6   8        Schempp             Simon    GER          2040.7     501.6
## 3538    7  13        Moravec            Ondrej    CZE          2030.8     537.1
## 3539    8  14      Desthieux             Simon    FRA          2039.2     516.9
## 3540    9   9           Eder             Simon    AUT          2039.0     513.9
## 3541   10   3       Svendsen        Emil Hegle    NOR          2038.7     517.0
## 3542   11   2            Boe            Tarjei    NOR          2061.2     504.7
## 3543   12  10            Boe Johannes Thingnes    NOR          2060.1     531.2
## 3544   13   4 Fillon Maillet           Quentin    FRA          2062.8     496.7
## 3545   14  17       Tsvetkov             Maxim    RUS          2049.2     542.2
## 3546   15  15          Smith            Nathan    CAN          2060.1     520.7
## 3547   16  22       Fourcade             Simon    FRA          2058.8     536.8
## 3548   17  21     Lindstroem           Fredrik    SWE          2067.3     548.4
## 3549   18  25     Grossegger              Sven    AUT          2073.5     513.0
## 3550   19  12           Doll          Benedikt    GER          2096.0     551.8
## 3551   20  26      Stenersen          Torstein    SWE          2070.4     533.4
## 3552   21  20         Bailey            Lowell    USA          2087.7     527.5
## 3553   22  11     Birnbacher           Andreas    GER          2104.3     524.1
## 3554   23  18   Landertinger           Dominik    AUT          2156.1     511.9
## 3555   24  29          Hofer             Lukas    ITA          2135.4     538.4
## 3556   25  23       Malyshko            Dmitry    RUS          2137.0     564.8
## 3557   26  19     Pidruchnyi            Dmytro    UKR          2136.0     562.8
## 3558   27  24           Anev          Krasimir    BUL          2155.7     528.3
## 3559   28  27   Bjoentegaard            Erlend    NOR          2166.9     540.7
## 3560   29  16        Peiffer              Arnd    GER          2186.6     568.4
## 3561   30   6    Bjoerndalen         Ole Einar    NOR          2293.2     613.2
## 3562    1   1       Fourcade            Martin    FRA          1676.2     408.9
## 3563    2  19        Moravec            Ondrej    CZE          1682.0     419.0
## 3564    3   3            Boe            Tarjei    NOR          1721.3     413.6
## 3565    4  17     Pidruchnyi            Dmytro    UKR          1719.5     413.5
## 3566    5  14        Peiffer              Arnd    GER          1715.2     426.0
## 3567    6  21       Fourcade             Simon    FRA          1703.5     421.3
## 3568    7   7     Garanichev           Evgeniy    RUS          1724.5     441.0
## 3569    8   5 Fillon Maillet           Quentin    FRA          1718.7     416.2
## 3570    9  27   Rastorgujevs           Andrejs    LAT          1735.0     420.9
## 3571   10   8            Boe Johannes Thingnes    NOR          1732.4     443.6
## 3572   11  13           Doll          Benedikt    GER          1742.4     440.0
## 3573   12   4    Bjoerndalen         Ole Einar    NOR          1731.9     443.2
## 3574   13   2       Svendsen        Emil Hegle    NOR          1743.9     477.8
## 3575   14   9     Birnbacher           Andreas    GER          1743.9     425.2
## 3576   15   6       Shipulin             Anton    RUS          1763.3     423.3
## 3577   16  23         Bailey            Lowell    USA          1757.2     467.1
## 3578   17  26       Slesingr            Michal    CZE          1757.6     431.2
## 3579   18  22       Malyshko            Dmitry    RUS          1763.1     444.7
## 3580   19  20       Tsvetkov             Maxim    RUS          1757.8     460.5
## 3581   20  12      Desthieux             Simon    FRA          1770.2     445.3
## 3582   21  10           Eder             Simon    AUT          1768.8     422.7
## 3583   22  29       Eberhard            Julian    AUT          1787.5     420.0
## 3584   23  15   Landertinger           Dominik    AUT          1795.6     440.0
## 3585   24  25     Grossegger              Sven    AUT          1773.5     470.6
## 3586   25  11          Smith            Nathan    CAN          1814.7     427.6
## 3587   26  18        Beatrix    Jean Guillaume    FRA          1806.5     498.5
## 3588   27  28         Krcmar            Michal    CZE          1819.6     441.8
## 3589   28  16     Lindstroem           Fredrik    SWE          1841.1     481.2
## 3590   29  30           Anev          Krasimir    BUL          1841.6     463.3
## 3591   30  24         Slepov            Alexey    RUS          1892.5     481.0
## 3592    1   6           Eder             Simon    AUT          1647.1     402.5
## 3593    2   4       Fourcade            Martin    FRA          1664.0     421.8
## 3594    3   8       Slesingr            Michal    CZE          1667.2     408.8
## 3595    4   2            Boe            Tarjei    NOR          1670.6     421.5
## 3596    5   3       Svendsen        Emil Hegle    NOR          1671.0     425.2
## 3597    6  15          Smith            Nathan    CAN          1689.9     399.8
## 3598    7   1            Boe Johannes Thingnes    NOR          1693.8     451.0
## 3599    8  13        Moravec            Ondrej    CZE          1705.2     429.0
## 3600    9  40     Garanichev           Evgeniy    RUS          1706.5     424.1
## 3601   10  10     Pidruchnyi            Dmytro    UKR          1705.8     437.5
## 3602   11   7   Landertinger           Dominik    AUT          1713.3     428.9
## 3603   12  14   Rastorgujevs           Andrejs    LAT          1716.7     429.8
## 3604   13  29       Fourcade             Simon    FRA          1720.4     404.0
## 3605   14   5     Grossegger              Sven    AUT          1714.5     426.2
## 3606   15   9     Birnbacher           Andreas    GER          1715.7     433.3
## 3607   16  23           Anev          Krasimir    BUL          1714.9     419.1
## 3608   17  30       Tsvetkov             Maxim    RUS          1731.7     405.8
## 3609   18  16       Eberhard            Julian    AUT          1747.6     411.9
## 3610   19  31 Fillon Maillet           Quentin    FRA          1730.5     404.9
## 3611   20  26      Birkeland        Lars Helge    NOR          1743.0     427.3
## 3612   21  12         Krcmar            Michal    CZE          1753.2     437.0
## 3613   22  33         Bailey            Lowell    USA          1755.1     413.3
## 3614   23  19     Lindstroem           Fredrik    SWE          1763.1     456.5
## 3615   24  28       Shipulin             Anton    RUS          1768.0     408.5
## 3616   25  21      Desthieux             Simon    FRA          1756.1     440.5
## 3617   26  18          Burke               Tim    USA          1778.2     448.2
## 3618   27  17   Bjoentegaard            Erlend    NOR          1779.7     435.6
## 3619   28  11        Peiffer              Arnd    GER          1764.1     446.1
## 3620   29  27    Kilchytskyy           Vitaliy    UKR          1781.1     428.3
## 3621   30  32        Beatrix    Jean Guillaume    FRA          1774.9     459.4
## 3622   31  51      Guigonnat           Antonin    FRA          1800.9     404.1
## 3623   32  45             Os         Alexander    NOR          1797.9     429.2
## 3624   33  24       Wiestner           Serafin    SUI          1807.7     450.7
## 3625   34  41         Lesser              Erik    GER          1808.0     429.2
## 3626   35  25        Semenov            Sergii    UKR          1810.5     415.0
## 3627   36  37       Malyshko            Dmitry    RUS          1809.6     437.2
## 3628   37  48          Boehm            Daniel    GER          1812.5     443.3
## 3629   38  44        Eliseev            Matvey    RUS          1821.4     437.1
## 3630   39  35       Chepelin          Vladimir    BLR          1839.4     443.3
## 3631   40  22        Zhyrnyi         Oleksandr    UKR          1836.8     425.7
## 3632   41  58        Finello            Jeremy    SUI          1830.8     419.2
## 3633   42  59      Stenersen          Torstein    SWE          1851.7     444.0
## 3634   43  49         Komatz             David    AUT          1845.8     440.6
## 3635   44  43        Otcenas            Martin    SVK          1862.6     463.1
## 3636   45  39          Weger          Benjamin    SUI          1851.1     431.0
## 3637   46  42      Bormolini            Thomas    ITA          1874.1     455.5
## 3638   47  57     Dombrovski             Karol    LTU          1867.7     440.0
## 3639   48  36    Bocharnikov            Sergey    BLR          1862.9     432.5
## 3640   49  54        Krupcik             Tomas    CZE          1866.9     453.7
## 3641   50  55         Davies              Macx    CAN          1880.5     475.1
## 3642   51  56         Slepov            Alexey    RUS          1921.8     408.0
## 3643   52  53          Hofer             Lukas    ITA          1885.3     436.2
## 3644   53  34            Gow         Christian    CAN          1900.3     448.7
## 3645   54  47            Gow             Scott    CAN          1919.2     439.3
## 3646   55  60       Matiasko          Miroslav    SVK          1930.4     463.4
## 3647   56  38      Yaliotnau             Raman    BLR          2004.0     525.9
## 3648   57  46     Podkorytov          Vassiliy    KAZ          1994.2     498.0
## 3649   58  50          Janik           Mateusz    POL          2005.8     444.5
## 3650    1  33       Shipulin             Anton    RUS          2465.3     608.4
## 3651    2  28       Fourcade            Martin    FRA          2509.7     606.9
## 3652    3  16        Semenov            Sergii    UKR          2512.5     684.1
## 3653    4  32    Bjoerndalen         Ole Einar    NOR          2519.1     624.7
## 3654    5  30        Schempp             Simon    GER          2543.7     677.6
## 3655    6  11           Anev          Krasimir    BUL          2525.9     626.2
## 3656    7  40       Tsvetkov             Maxim    RUS          2533.8     690.2
## 3657    8  24         Krcmar            Michal    CZE          2549.4     694.9
## 3658    9   1        Peiffer              Arnd    GER          2558.0     683.2
## 3659   10  25         Bailey            Lowell    USA          2543.5     696.7
## 3660   11   4           Doll          Benedikt    GER          2572.2     683.9
## 3661   12  20     Garanichev           Evgeniy    RUS          2561.7     677.6
## 3662   13   2      Birkeland        Lars Helge    NOR          2547.6     629.6
## 3663   14  15            Boe Johannes Thingnes    NOR          2592.1     631.1
## 3664   15   3 Fillon Maillet           Quentin    FRA          2608.6     737.4
## 3665   16  74       Siemakov         Volodymyr    UKR          2593.9     641.5
## 3666   17  19            Gow             Scott    CAN          2589.4     646.7
## 3667   18  51      Desthieux             Simon    FRA          2630.6     698.4
## 3668   19  31          Weger          Benjamin    SUI          2623.2     704.7
## 3669   20  70         Waeger            Lorenz    AUT          2622.3     697.0
## 3670   21  42         Lesser              Erik    GER          2640.6     695.8
## 3671   22  26     Lindstroem           Fredrik    SWE          2660.5     772.8
## 3672   23  13        Beatrix    Jean Guillaume    FRA          2656.3     700.2
## 3673   24  10       Windisch           Dominik    ITA          2667.6     681.8
## 3674   25  35     Samuelsson         Sebastian    SWE          2645.3     703.5
## 3675   26  57       Fourcade             Simon    FRA          2668.1     630.7
## 3676   27  99        Femling             Peppe    SWE          2644.0     663.9
## 3677   28 103  Gjermundshaug            Vegard    NOR          2672.8     641.9
## 3678   29  81       Nordgren              Leif    USA          2666.6     652.7
## 3679   30   8   Landertinger           Dominik    AUT          2712.0     796.4
## 3680   31  22        Gronman            Tuomas    FIN          2692.9     651.7
## 3681   32  58    L'Abee-Lund            Henrik    NOR          2704.8     816.1
## 3682   33  90       Schommer              Paul    USA          2682.2     650.1
## 3683   34  50          Burke               Tim    USA          2717.8     764.1
## 3684   35  67          Oblak            Lenart    SLO          2671.6     686.5
## 3685   36  68        Doherty              Sean    USA          2722.5     713.5
## 3686   37 100         Claude            Fabien    FRA          2733.8     632.5
## 3687   38  49       Chepelin          Vladimir    BLR          2730.7     695.5
## 3688   39  47        Babikov             Anton    RUS          2723.6     755.0
## 3689   40  86         Soukup          Jaroslav    CZE          2720.2     717.6
## 3690   41  93     Grossegger              Sven    AUT          2724.2     699.6
## 3691   42  75     Willeitner           Michael    GER          2748.2     701.9
## 3692   43  69          Kazar             Matej    SVK          2723.3     706.6
## 3693   44  17      Savitskiy               Yan    KAZ          2732.9     712.9
## 3694   45  34          Pryma             Artem    UKR          2750.8     636.2
## 3695   46  61     Gerdzhikov           Dimitar    BUL          2728.9     721.5
## 3696   47   5         Roesch           Michael    BEL          2736.7     658.0
## 3697   48  98        Abasheu           Dzmitry    BLR          2746.2     709.2
## 3698   49  88        Zhyrnyi         Oleksandr    UKR          2738.9     719.3
## 3699   50  39         Komatz             David    AUT          2741.7     656.1
## 3700   51  54         Dolder             Mario    SUI          2753.6     789.1
## 3701   52  83       Kobonoki           Tsukasa    JPN          2743.7     725.5
## 3702   53  38          Iliev          Vladimir    BUL          2772.5     695.0
## 3703   54  84     Podkorytov          Vassiliy    KAZ          2752.5     657.5
## 3704   55  89     Kletcherov           Michail    BUL          2759.5     742.8
## 3705   56  59          Hoerl            Fabian    AUT          2758.3     720.6
## 3706   57   9        Moravec            Ondrej    CZE          2783.1     698.2
## 3707   58  12          Bauer            Klemen    SLO          2807.2     751.4
## 3708   59  64          Nelin            Jesper    SWE          2809.4     629.4
## 3709   60  77         Zahkna              Rene    EST          2775.6     672.3
## 3710   61  52   Bjoentegaard            Erlend    NOR          2807.5     703.6
## 3711   62  63         Bricis            Ilmars    LAT          2790.4     732.6
## 3712   63   7   Rastorgujevs           Andrejs    LAT          2825.3     817.0
## 3713   64  95       Malyshko            Dmitry    RUS          2802.5     835.0
## 3714   65 104     Dombrovski             Karol    LTU          2786.5     805.2
## 3715   66  14          Guzik          Grzegorz    POL          2795.8     739.3
## 3716   67  27     Mesotitsch            Daniel    AUT          2818.9     753.7
## 3717   68  80      Bormolini            Thomas    ITA          2806.0     721.3
## 3718   69  37           Koiv             Kauri    EST          2808.7     718.6
## 3719   70  72       Vaclavik              Adam    CZE          2817.1     759.6
## 3720   71 106        Finello            Jeremy    SUI          2810.8     635.2
## 3721   72  18       Kaukenas             Tomas    LTU          2844.4     709.0
## 3722   73  71         Pantov             Anton    KAZ          2854.8     668.5
## 3723   74  43       Puchianu            Cornel    ROU          2853.4     716.1
## 3724   75  41          Green           Brendan    CAN          2849.9     698.4
## 3725   75  60            Gow         Christian    CAN          2848.1     805.7
## 3726   77  92       Szczurek            Lukasz    POL          2829.0     684.7
## 3727   78  56          Dixon             Scott    GBR          2825.4     707.6
## 3728   79  66         Dovzan              Miha    SLO          2860.5     722.2
## 3729   80  55           Faur             Remus    ROU          2854.1     731.2
## 3730   81  44         Bischl          Matthias    GER          2889.0     772.9
## 3731   82 101        Lessing            Roland    EST          2897.6     712.2
## 3732   83  29     Pidruchnyi            Dmytro    UKR          2903.6     766.2
## 3733   84  23        Otcenas            Martin    SVK          2914.0     769.2
## 3734   85  48       Slesingr            Michal    CZE          2896.0     750.8
## 3735   86  45       Wiestner           Serafin    SUI          2934.1     763.2
## 3736   87  53        Eliseev            Matvey    RUS          2903.6     725.7
## 3737   88 102           Sima            Michal    SVK          2903.5     703.0
## 3738   89  46        Hasilla             Tomas    SVK          2940.5     790.5
## 3739   90 105           Lusa          Daumants    LAT          2906.4     690.2
## 3740   91  36     Hiidensalo              Olli    FIN          2965.0     655.1
## 3741   92  62        Seppala              Tero    FIN          2958.1     795.7
## 3742   93  97          Ozaki            Kosuke    JPN          2938.2     751.0
## 3743   94  87           Zini              Rudy    ITA          2945.4     745.1
## 3744   95  96           Buta            George    ROU          2970.2     728.8
## 3745   96  21    Bocharnikov            Sergey    BLR          3004.3     774.4
## 3746   97  73            Kim           Yonggyu    KOR          2990.1     680.2
## 3747   98 107          Braun             Maxim    KAZ          3002.6     857.5
## 3748   99  79        Strolia          Vytautas    LTU          3005.2     742.5
## 3749  100  76       Montello          Giuseppe    ITA          3021.2     794.6
## 3750  101  94            Heo           Seonhoe    KOR          2967.3     777.9
## 3751  102  78          Janik           Mateusz    POL          3018.1     779.9
## 3752  103  82        Varabei            Maksim    BLR          3114.3     837.5
## 3753  104  85         Hodzic              Edin    SRB          3055.6     834.8
## 3754  105  65        Angelis         Apostolos    GRE          3121.8     801.1
## 3755    1   9            Boe Johannes Thingnes    NOR          1819.8     451.2
## 3756    2  17 Fillon Maillet           Quentin    FRA          1818.3     441.3
## 3757    3   2       Shipulin             Anton    RUS          1832.0     446.4
## 3758    4   5       Svendsen        Emil Hegle    NOR          1846.0     466.1
## 3759    5   1       Fourcade            Martin    FRA          1857.3     470.6
## 3760    6  13        Beatrix    Jean Guillaume    FRA          1844.1     462.7
## 3761    7   3        Schempp             Simon    GER          1839.7     453.6
## 3762    8   6         Lesser              Erik    GER          1854.7     487.8
## 3763    9  10       Eberhard            Julian    AUT          1877.3     459.6
## 3764   10   7    Bjoerndalen         Ole Einar    NOR          1862.0     481.9
## 3765   11  23      Birkeland        Lars Helge    NOR          1861.6     486.8
## 3766   12  15       Windisch           Dominik    ITA          1904.8     462.6
## 3767   13   8       Tsvetkov             Maxim    RUS          1896.2     488.4
## 3768   14  12        Babikov             Anton    RUS          1886.1     499.1
## 3769   15  26     Garanichev           Evgeniy    RUS          1903.4     474.4
## 3770   16  16         Bailey            Lowell    USA          1895.1     496.0
## 3771   17  30     Lindstroem           Fredrik    SWE          1911.6     498.4
## 3772   18  22        Semenov            Sergii    UKR          1917.7     473.5
## 3773   19  14           Doll          Benedikt    GER          1932.6     504.3
## 3774   20  25      Desthieux             Simon    FRA          1950.5     515.0
## 3775   21   4        Peiffer              Arnd    GER          1945.2     474.8
## 3776   22  21     Pidruchnyi            Dmytro    UKR          1963.8     509.3
## 3777   23  19        Moravec            Ondrej    CZE          1962.0     468.0
## 3778   24  20       Slesingr            Michal    CZE          1966.9     474.1
## 3779   25  27       Siemakov         Volodymyr    UKR          1959.1     512.4
## 3780   26  24   Rastorgujevs           Andrejs    LAT          1986.8     534.5
## 3781   27  18          Weger          Benjamin    SUI          1987.6     494.2
## 3782   28  11         Krcmar            Michal    CZE          1981.5     526.1
## 3783   29  29         Waeger            Lorenz    AUT          1987.2     509.5
## 3784   30  28            Gow             Scott    CAN          2016.1     517.6
## 3785    1  82           Doll          Benedikt    GER           973.9     496.0
## 3786    2  96            Boe Johannes Thingnes    NOR           964.6     490.4
## 3787    3   4       Fourcade            Martin    FRA          1000.2     509.7
## 3788    4  77         Bailey            Lowell    USA           989.5     503.9
## 3789    5  81        Moravec            Ondrej    CZE          1003.2     518.7
## 3790    6  40           Anev          Krasimir    BUL           989.0     504.7
## 3791    7  10       Eberhard            Julian    AUT          1013.8     517.0
## 3792    8  55    Bjoerndalen         Ole Einar    NOR           998.2     517.1
## 3793    9  34        Schempp             Simon    GER          1003.4     500.6
## 3794   10   9     Garanichev           Evgeniy    RUS          1004.2     501.2
## 3795   11  62        Sinapov             Anton    BUL          1010.2     516.2
## 3796   12  32        Peiffer              Arnd    GER          1006.7     533.8
## 3797   13   1          Iliev          Vladimir    BUL          1013.4     508.7
## 3798   14  84            Boe            Tarjei    NOR          1013.2     522.8
## 3799   15  64         Dolder             Mario    SUI          1002.0     513.4
## 3800   16  65        Hasilla             Tomas    SVK          1005.7     516.4
## 3801   17  18   Landertinger           Dominik    AUT          1045.0     540.9
## 3802   18   2       Windisch           Dominik    ITA          1031.3     524.1
## 3803   18  48       Wiestner           Serafin    SUI          1030.4     552.2
## 3804   20  30       Puchianu            Cornel    ROU          1023.8     511.2
## 3805   21  52       Shipulin             Anton    RUS          1037.4     540.9
## 3806   22  57           Eder             Simon    AUT          1033.0     536.5
## 3807   23  74           Faur             Remus    ROU          1021.2     532.3
## 3808   24   5      Savitskiy               Yan    KAZ          1037.8     550.8
## 3809   25  16            Gow             Scott    CAN          1041.3     529.7
## 3810   26  14       Nordgren              Leif    USA          1039.8     538.0
## 3811   27   7        Beatrix    Jean Guillaume    FRA          1039.5     503.9
## 3812   28  49     Pidruchnyi            Dmytro    UKR          1041.1     530.7
## 3813   29  33           Koiv             Kauri    EST          1026.1     533.4
## 3814   30  80     Lindstroem           Fredrik    SWE          1043.6     547.8
## 3815   31  15       Kaukenas             Tomas    LTU          1029.7     546.1
## 3816   32  24            Gow         Christian    CAN          1028.1     522.5
## 3817   33  88          Bauer            Klemen    SLO          1043.2     541.7
## 3818   34  42       Vaclavik              Adam    CZE          1056.2     541.0
## 3819   34  46      Desthieux             Simon    FRA          1060.3     525.6
## 3820   36 101       Svendsen        Emil Hegle    NOR          1032.5     526.7
## 3821   37  22         Lesser              Erik    GER          1052.2     564.4
## 3822   38  58          Green           Brendan    CAN          1055.2     521.9
## 3823   39  97        Doherty              Sean    USA          1042.5     508.5
## 3824   40  43          Burke               Tim    USA          1043.7     553.7
## 3825   41  11        Semenov            Sergii    UKR          1056.5     569.5
## 3826   42  86       Slesingr            Michal    CZE          1056.4     527.6
## 3827   43  20 Fillon Maillet           Quentin    FRA          1065.7     555.7
## 3828   44  47       Montello          Giuseppe    ITA          1053.7     539.0
## 3829   45 100    Bocharnikov            Sergey    BLR          1046.8     555.2
## 3830   46  79      Bormolini            Thomas    ITA          1031.9     542.0
## 3831   47  51        Otcenas            Martin    SVK          1057.8     570.7
## 3832   48  38     Hiidensalo              Olli    FIN          1053.8     551.0
## 3833   49  29        Babikov             Anton    RUS          1064.5     551.9
## 3834   50  36     Mesotitsch            Daniel    AUT          1057.0     539.7
## 3835   51  19         Roesch           Michael    BEL          1059.8     533.7
## 3836   52  66        Lessing            Roland    EST          1064.6     528.4
## 3837   53  92          Guzik          Grzegorz    POL          1062.2     551.4
## 3838   54  71        Strolia          Vytautas    LTU          1050.8     526.2
## 3839   55   6          Weger          Benjamin    SUI          1062.6     567.5
## 3840   56   3          Hofer             Lukas    ITA          1050.5     539.0
## 3841   57  93   Rastorgujevs           Andrejs    LAT          1081.4     529.6
## 3842   58  87        Zhyrnyi         Oleksandr    UKR          1063.9     523.9
## 3843   59  12          Nelin            Jesper    SWE          1075.4     552.4
## 3844   60  26      Stenersen          Torstein    SWE          1072.1     530.2
## 3845   61  67         Krcmar            Michal    CZE          1098.1     539.7
## 3846   62  90           Sima            Michal    SVK          1072.0     535.9
## 3847   63  78          Braun             Maxim    KAZ          1070.8     549.4
## 3848   64  56         Dovzan              Miha    SLO          1083.2     545.7
## 3849   65  45       Chepelin          Vladimir    BLR          1107.7     586.2
## 3850   66  13        Gronman            Tuomas    FIN          1081.9     544.9
## 3851   67  39      Tachizaki            Mikito    JPN          1079.6     574.5
## 3852   68  23         Pantov             Anton    KAZ          1079.3     575.6
## 3853   69  53       Tsvetkov             Maxim    RUS          1073.3     544.0
## 3854   70  91     Gerdzhikov           Dimitar    BUL          1087.7     548.2
## 3855   71  69        Seppala              Tero    FIN          1092.2     563.6
## 3856   72  70       Szczurek            Lukasz    POL          1083.2     540.8
## 3857   73  73       Siemakov         Volodymyr    UKR          1092.0     589.5
## 3858   74  99           Buta            George    ROU          1094.2     553.5
## 3859   75  72       Kobonoki           Tsukasa    JPN          1096.9     590.8
## 3860   76 102     Samuelsson         Sebastian    SWE          1107.4     544.6
## 3861   77  17          Kazar             Matej    SVK          1125.4     525.7
## 3862   78  98         Ermits             Kalev    EST          1093.0     573.4
## 3863   79 103         Davies              Macx    CAN          1111.2     553.0
## 3864   80  83            Kim           Yonggyu    KOR          1094.4     535.3
## 3865   81  94        Finello            Jeremy    SUI          1099.1     564.7
## 3866   82  68        Varabei            Maksim    BLR          1124.7     584.3
## 3867   83  50       Crnkovic          Kresimir    CRO          1133.7     588.1
## 3868   84  54         Bricis            Ilmars    LAT          1118.0     584.2
## 3869   85  75       Fourcade             Simon    FRA          1125.2     546.1
## 3870   86  85          Ozaki            Kosuke    JPN          1106.9     574.1
## 3871   87  59         Morton             Damon    AUS          1113.7     573.7
## 3872   88  61      Patrijuks        Aleksandrs    LAT          1117.4     608.3
## 3873   89  31            Lee             Inbok    KOR          1118.2     576.9
## 3874   90  25         Langer           Thierry    BEL          1137.6     591.5
## 3875   91  27         Gombos            Karoly    HUN          1147.9     602.5
## 3876   92   8      Yaliotnau             Raman    BLR          1181.2     641.6
## 3877   93  37          Trsan               Rok    SLO          1177.7     657.8
## 3878   94  35          Penar             Rafal    POL          1149.3     606.7
## 3879   95  41     Dombrovski             Karol    LTU          1142.6     619.6
## 3880   96  89            Kim           Jongmin    KOR          1166.2     589.8
## 3881   97  21     Krsmanovic             Dejan    SRB          1188.5     582.4
## 3882   98  28          Dixon             Scott    GBR          1193.5     582.7
## 3883   99  60         Hodzic              Edin    SRB          1196.1     602.8
## 3884  100  76       Petrovic             Filip    CRO          1190.1     612.8
## 3885  101  95        Angelis         Apostolos    GRE          1216.7     653.4
## 3886  102  63       Fountain             Vinny    GBR          1244.9     683.6
## 3887    1 100         Bailey            Lowell    USA          2346.4     602.1
## 3888    2  51        Moravec            Ondrej    CZE          2352.8     596.5
## 3889    3   4       Fourcade            Martin    FRA          2386.2     579.3
## 3890    4  27         Lesser              Erik    GER          2395.5     600.7
## 3891    5  15        Semenov            Sergii    UKR          2391.9     597.5
## 3892    6  67         Krcmar            Michal    CZE          2398.7     611.3
## 3893    7   1       Shipulin             Anton    RUS          2414.0     584.6
## 3894    8  96            Boe Johannes Thingnes    NOR          2429.5     649.2
## 3895    9   3      Birkeland        Lars Helge    NOR          2425.6     602.3
## 3896   10  11          Weger          Benjamin    SUI          2426.5     661.2
## 3897   11  99         Volkov            Alexey    RUS          2432.5     613.1
## 3898   12  80           Eder             Simon    AUT          2444.9     667.7
## 3899   13  46        Schempp             Simon    GER          2458.3     593.5
## 3900   14 101       Eberhard            Julian    AUT          2492.4     584.5
## 3901   15  59     Mesotitsch            Daniel    AUT          2463.4     614.9
## 3902   16  78           Anev          Krasimir    BUL          2469.0     668.4
## 3903   17   6 Fillon Maillet           Quentin    FRA          2500.2     644.2
## 3904   18  94       Slesingr            Michal    CZE          2507.6     654.0
## 3905   19  58           Doll          Benedikt    GER          2510.7     599.4
## 3906   20  73     Garanichev           Evgeniy    RUS          2502.1     655.0
## 3907   21  90       Windisch           Dominik    ITA          2516.2     651.0
## 3908   22  13        Beatrix    Jean Guillaume    FRA          2509.4     612.9
## 3909   23  49       Nordgren              Leif    USA          2511.1     668.2
## 3910   24  63          Iliev          Vladimir    BUL          2532.6     602.9
## 3911   25  70         Claude            Fabien    FRA          2543.4     675.6
## 3912   26   5   Landertinger           Dominik    AUT          2537.5     657.8
## 3913   27  81       Svendsen        Emil Hegle    NOR          2529.4     608.8
## 3914   28  61        Abasheu           Dzmitry    BLR          2543.9     643.4
## 3915   29  75          Kazar             Matej    SVK          2542.9     635.5
## 3916   30  21           Koiv             Kauri    EST          2540.8     634.7
## 3917   31   8       Chepelin          Vladimir    BLR          2585.7     673.4
## 3918   32  37        Krupcik             Tomas    CZE          2597.3     630.5
## 3919   33  93      Savitskiy               Yan    KAZ          2577.6     679.4
## 3920   34  77        Peiffer              Arnd    GER          2602.6     605.8
## 3921   34  88          Hofer             Lukas    ITA          2593.4     604.3
## 3922   36  74          Burke               Tim    USA          2596.2     724.8
## 3923   37  44      Stenersen          Torstein    SWE          2591.2     608.2
## 3924   38  68     Lindstroem           Fredrik    SWE          2597.7     674.6
## 3925   39  16        Sinapov             Anton    BUL          2598.0     620.1
## 3926   40  41    Bocharnikov            Sergey    BLR          2592.8     685.2
## 3927   41  32     Pidruchnyi            Dmytro    UKR          2605.7     659.7
## 3928   42  50         Davies              Macx    CAN          2581.4     715.4
## 3929   43  24            Gow             Scott    CAN          2580.0     698.3
## 3930   44  33       Wiestner           Serafin    SUI          2603.0     685.7
## 3931   45  89         Zahkna              Rene    EST          2590.6     690.3
## 3932   46  12       Kaukenas             Tomas    LTU          2600.9     616.7
## 3933   47  95    Bjoerndalen         Ole Einar    NOR          2616.5     680.3
## 3934   48  66        Lessing            Roland    EST          2621.7     681.9
## 3935   49  48     Hiidensalo              Olli    FIN          2631.9     685.4
## 3936   50  22         Dovzan              Miha    SLO          2636.7     693.3
## 3937   51  40      Desthieux             Simon    FRA          2637.7     614.0
## 3938   52  83     Samuelsson         Sebastian    SWE          2655.1     674.3
## 3939   53  91 Nedza-Kubiniec           Andrzej    POL          2632.0     642.8
## 3940   54   7          Nelin            Jesper    SWE          2691.4     664.2
## 3941   55   9         Roesch           Michael    BEL          2661.6     664.5
## 3942   56  14   Rastorgujevs           Andrejs    LAT          2687.0     770.8
## 3943   57  55       Szczurek            Lukasz    POL          2669.2     694.3
## 3944   58  23        Doherty              Sean    USA          2679.1     627.0
## 3945   59  19      Bormolini            Thomas    ITA          2684.3     629.0
## 3946   60  60        Hasilla             Tomas    SVK          2684.1     710.5
## 3947   61  92      Yaliotnau             Raman    BLR          2709.2     764.5
## 3948   62  86          Nagai             Junji    JPN          2671.2     759.2
## 3949   63  62        Finello            Jeremy    SUI          2692.6     702.1
## 3950   64 102         Dolder             Mario    SUI          2676.0     763.2
## 3951   65  10        Otcenas            Martin    SVK          2695.6     639.2
## 3952   66  57     Dombrovski             Karol    LTU          2681.2     726.3
## 3953   67  56     Podkorytov          Vassiliy    KAZ          2742.8     676.0
## 3954   68  47       Kobonoki           Tsukasa    JPN          2719.9     636.5
## 3955   69  29          Dixon             Scott    GBR          2721.6     676.4
## 3956   70  98       Tkalenko            Ruslan    UKR          2751.2     817.7
## 3957   71  38            Pop          Gheorghe    ROU          2723.4     722.0
## 3958   72  31        Loginov         Alexander    RUS          2780.7     663.1
## 3959   73  42        Strolia          Vytautas    LTU          2783.7     701.5
## 3960   74  20      Tachizaki            Mikito    JPN          2798.9     635.6
## 3961   75  34           Lusa          Daumants    LAT          2757.0     726.3
## 3962   76  87       Puchianu            Cornel    ROU          2791.3     765.2
## 3963   77  28         Langer           Thierry    BEL          2788.8     716.4
## 3964   78  54           Faur             Remus    ROU          2793.1     718.0
## 3965   79  76        Seppala              Tero    FIN          2836.4     743.0
## 3966   80  72        Zhyrnyi         Oleksandr    UKR          2832.9     681.2
## 3967   81  26     Gerdzhikov           Dimitar    BUL          2834.2     814.9
## 3968   82  64          Oblak            Lenart    SLO          2828.1     736.5
## 3969   83  45            Kim           Jongmin    KOR          2842.8     794.0
## 3970   84  36        Vitenko         Vladislav    KAZ          2871.3     814.9
## 3971   85  18  Loukkaanhuhta             Mikko    FIN          2873.0     765.0
## 3972   86  85          Green           Brendan    CAN          2851.1     785.8
## 3973   87  71       Montello          Giuseppe    ITA          2878.3     708.6
## 3974   88   2          Bauer            Klemen    SLO          2871.4     774.7
## 3975   89  69            Heo           Seonhoe    KOR          2898.6     717.2
## 3976   90  25          Guzik          Grzegorz    POL          2907.4     713.4
## 3977   91  39           Sima            Michal    SVK          2895.2     744.2
## 3978   92  43        Angelis         Apostolos    GRE          2919.1     730.6
## 3979   93  79      Patrijuks        Aleksandrs    LAT          2955.7     799.1
## 3980   94  82         Hodzic              Edin    SRB          2937.7     744.9
## 3981   95  35         Gombos            Karoly    HUN          2972.1     746.6
## 3982   96  84       Crnkovic          Kresimir    CRO          3080.6     878.0
## 3983   97  30       Petrovic             Filip    CRO          3087.6     864.9
## 3984   98  97    Starodubets         Aleksandr    KOR          3125.7     862.3
## 3985   99  52         Gleave              Alex    GBR          3221.1     774.9
## 3986  100  65     Krsmanovic             Dejan    SRB          3315.5     837.8
## 3987    1   8        Schempp             Simon    GER          1756.4     439.4
## 3988    2   4            Boe Johannes Thingnes    NOR          1779.1     460.1
## 3989    3  17           Eder             Simon    AUT          1753.9     440.9
## 3990    4   7       Shipulin             Anton    RUS          1788.0     443.7
## 3991    5   2       Fourcade            Martin    FRA          1802.2     485.5
## 3992    6   3         Bailey            Lowell    USA          1770.7     454.6
## 3993    7  22   Landertinger           Dominik    AUT          1796.5     478.8
## 3994    8  27     Lindstroem           Fredrik    SWE          1794.6     447.5
## 3995    9   1           Doll          Benedikt    GER          1806.4     444.8
## 3996   10   9        Peiffer              Arnd    GER          1803.1     484.4
## 3997   11  18     Garanichev           Evgeniy    RUS          1804.6     444.4
## 3998   12  16           Anev          Krasimir    BUL          1794.2     468.6
## 3999   13  29       Slesingr            Michal    CZE          1817.9     471.9
## 4000   14  21            Boe            Tarjei    NOR          1816.6     471.9
## 4001   15  24 Fillon Maillet           Quentin    FRA          1811.4     441.0
## 4002   16   5        Moravec            Ondrej    CZE          1814.7     471.6
## 4003   17  30          Bauer            Klemen    SLO          1818.9     453.4
## 4004   18  14        Beatrix    Jean Guillaume    FRA          1820.0     453.9
## 4005   19  11       Eberhard            Julian    AUT          1847.9     457.9
## 4006   20  19          Iliev          Vladimir    BUL          1838.3     493.2
## 4007   21  10         Lesser              Erik    GER          1836.7     448.7
## 4008   22  15         Krcmar            Michal    CZE          1831.2     460.2
## 4009   23   6    Bjoerndalen         Ole Einar    NOR          1846.6     465.2
## 4010   24  23       Windisch           Dominik    ITA          1861.4     452.6
## 4011   25  25     Pidruchnyi            Dmytro    UKR          1863.5     476.0
## 4012   26  13       Tsvetkov             Maxim    RUS          1863.9     474.2
## 4013   27  20        Semenov            Sergii    UKR          1856.3     493.3
## 4014   28  12       Svendsen        Emil Hegle    NOR          1879.5     461.7
## 4015   29  28       Wiestner           Serafin    SUI          1907.0     469.8
## 4016   30  26         Dolder             Mario    SUI          1915.6     498.4
## 4017    1   3       Fourcade            Martin    FRA          1494.1     383.8
## 4018    2   2            Boe Johannes Thingnes    NOR          1544.8     368.9
## 4019    3   8    Bjoerndalen         Ole Einar    NOR          1533.5     396.3
## 4020    4  21       Shipulin             Anton    RUS          1547.8     366.6
## 4021    5   5        Moravec            Ondrej    CZE          1546.6     392.2
## 4022    6   4         Bailey            Lowell    USA          1532.0     378.1
## 4023    7   6           Anev          Krasimir    BUL          1539.1     401.1
## 4024    8   7       Eberhard            Julian    AUT          1564.5     391.3
## 4025    9  14            Boe            Tarjei    NOR          1570.2     391.9
## 4026   10   9        Schempp             Simon    GER          1565.8     391.6
## 4027   11   1           Doll          Benedikt    GER          1567.5     375.3
## 4028   12  22           Eder             Simon    AUT          1591.1     392.7
## 4029   13  27        Beatrix    Jean Guillaume    FRA          1596.8     381.5
## 4030   14  28     Pidruchnyi            Dmytro    UKR          1603.4     374.3
## 4031   15  41        Semenov            Sergii    UKR          1603.7     374.3
## 4032   16  33          Bauer            Klemen    SLO          1609.5     420.6
## 4033   17  30     Lindstroem           Fredrik    SWE          1616.4     379.0
## 4034   18  13          Iliev          Vladimir    BUL          1611.1     375.2
## 4035   19  12        Peiffer              Arnd    GER          1614.4     414.9
## 4036   20  10     Garanichev           Evgeniy    RUS          1613.2     398.3
## 4037   21  17   Landertinger           Dominik    AUT          1621.3     390.6
## 4038   22  43 Fillon Maillet           Quentin    FRA          1625.9     371.9
## 4039   23  32            Gow         Christian    CAN          1611.5     379.3
## 4040   24  47        Otcenas            Martin    SVK          1620.8     404.0
## 4041   25  18       Windisch           Dominik    ITA          1626.1     369.6
## 4042   26  19       Wiestner           Serafin    SUI          1646.7     387.4
## 4043   27  35      Desthieux             Simon    FRA          1644.4     432.1
## 4044   28  37         Lesser              Erik    GER          1645.6     411.4
## 4045   29  15         Dolder             Mario    SUI          1639.5     401.0
## 4046   30  42       Slesingr            Michal    CZE          1654.9     437.1
## 4047   31  51         Roesch           Michael    BEL          1659.7     378.4
## 4048   32  40          Burke               Tim    USA          1668.8     407.1
## 4049   33  24      Savitskiy               Yan    KAZ          1667.4     403.3
## 4050   34  44       Montello          Giuseppe    ITA          1666.5     397.2
## 4051   35  29           Koiv             Kauri    EST          1661.8     418.1
## 4052   36  48     Hiidensalo              Olli    FIN          1691.3     428.4
## 4053   37  57   Rastorgujevs           Andrejs    LAT          1691.9     415.9
## 4054   38  20       Puchianu            Cornel    ROU          1681.3     399.6
## 4055   39  49        Babikov             Anton    RUS          1692.3     384.5
## 4056   40  45    Bocharnikov            Sergey    BLR          1678.4     401.6
## 4057   41  31       Kaukenas             Tomas    LTU          1688.0     425.5
## 4058   42  23           Faur             Remus    ROU          1693.7     419.3
## 4059   43  16        Hasilla             Tomas    SVK          1696.6     417.1
## 4060   44  59          Nelin            Jesper    SWE          1722.2     399.7
## 4061   45  58        Zhyrnyi         Oleksandr    UKR          1713.6     416.7
## 4062   46  60      Stenersen          Torstein    SWE          1736.8     383.7
## 4063   47  25            Gow             Scott    CAN          1734.0     409.5
## 4064   48  46      Bormolini            Thomas    ITA          1718.8     399.4
## 4065   49  26       Nordgren              Leif    USA          1718.2     414.9
## 4066   50  50     Mesotitsch            Daniel    AUT          1739.8     407.8
## 4067   51  52        Lessing            Roland    EST          1728.6     416.2
## 4068   52  38          Green           Brendan    CAN          1742.1     408.1
## 4069   53  55          Weger          Benjamin    SUI          1764.7     395.2
## 4070   54  34       Vaclavik              Adam    CZE          1778.6     426.2
## 4071   55  39        Doherty              Sean    USA          1795.1     406.4
## 4072   56  54        Strolia          Vytautas    LTU          1804.2     418.5
## 4073   57  53          Guzik          Grzegorz    POL          1815.0     420.4
## 4074    1  38       Fourcade            Martin    FRA           934.8     480.3
## 4075    2  24        Moravec            Ondrej    CZE           929.0     470.8
## 4076    3  20       Svendsen        Emil Hegle    NOR           943.7     478.2
## 4077    4   3            Boe Johannes Thingnes    NOR           939.5     478.2
## 4078    5  22        Peiffer              Arnd    GER           943.8     477.3
## 4079    6  45           Eder             Simon    AUT           950.0     494.6
## 4080    7  42   Rastorgujevs           Andrejs    LAT           940.9     492.5
## 4081    8  23    Bjoerndalen         Ole Einar    NOR           956.8     470.6
## 4082    9  40       Eberhard            Julian    AUT           972.8     474.6
## 4083   10  48         Roesch           Michael    BEL           949.1     491.3
## 4084   11  10   Landertinger           Dominik    AUT           968.1     476.5
## 4085   12  37           Rees             Roman    GER           955.1     483.9
## 4086   13  61   Christiansen    Vetle Sjaastad    NOR           950.0     490.7
## 4087   14   2         Krcmar            Michal    CZE           975.8     497.7
## 4088   15  44          Hofer             Lukas    ITA           980.6     481.0
## 4089   16  28         Bailey            Lowell    USA           961.6     492.6
## 4090   17  29       Windisch           Dominik    ITA           978.7     506.3
## 4091   18  80        Lapshin           Timofei    KOR           973.3     509.4
## 4092   19   1           Graf           Florian    GER           970.2     486.7
## 4093   20  50          Bauer            Klemen    SLO           980.0     513.1
## 4094   21  25      Birkeland        Lars Helge    NOR           979.6     485.9
## 4095   21  57           Anev          Krasimir    BUL           975.3     505.7
## 4096   23  30     Garanichev           Evgeniy    RUS           983.2     524.1
## 4097   24  18      Desthieux             Simon    FRA           994.6     487.6
## 4098   25   6     Samuelsson         Sebastian    SWE           971.2     502.0
## 4099   26   8     Pidruchnyi            Dmytro    UKR           987.9     509.8
## 4100   27   4        Eliseev            Matvey    RUS           974.0     486.3
## 4101   28   5       Kaukenas             Tomas    LTU           964.9     495.7
## 4102   29  27       Shipulin             Anton    RUS           997.5     521.6
## 4103   30  41           Doll          Benedikt    GER           992.3     514.2
## 4104   31  13     Mesotitsch            Daniel    AUT           979.3     502.1
## 4105   32  15            Boe            Tarjei    NOR           994.1     525.6
## 4106   33  47          Iliev          Vladimir    BUL           993.9     529.3
## 4107   34  75        Nawrath           Philipp    GER           986.3     491.9
## 4108   35  31       Slesingr            Michal    CZE           984.6     488.5
## 4109   36  17         Dolder             Mario    SUI           991.6     527.2
## 4110   37  34      Savitskiy               Yan    KAZ           989.8     491.1
## 4111   38  74        Babikov             Anton    RUS           974.2     503.3
## 4112   39  67     Hiidensalo              Olli    FIN          1005.6     525.7
## 4113   40  26          Weger          Benjamin    SUI           980.0     502.9
## 4114   41  93         Claude            Fabien    FRA           990.4     498.4
## 4115   42  46          Pryma             Artem    UKR          1002.6     527.6
## 4116   43  14       Nordgren              Leif    USA          1004.1     505.4
## 4117   44  71        Doherty              Sean    USA           998.5     521.4
## 4118   45  21          Green           Brendan    CAN           997.3     505.4
## 4119   46  62          Trsan               Rok    SLO          1005.1     515.6
## 4120   47  12        Semenov            Sergii    UKR          1019.9     534.0
## 4121   48  43 Fillon Maillet           Quentin    FRA          1019.7     525.5
## 4122   49  84        Abasheu           Dzmitry    BLR          1013.6     528.5
## 4123   50  77            Gow         Christian    CAN           993.4     515.3
## 4124   51  92       Kobonoki           Tsukasa    JPN          1014.4     518.7
## 4125   52  76           Faur             Remus    ROU          1006.4     511.6
## 4126   53  66         Zahkna              Rene    EST          1007.6     508.6
## 4127   54  96     Gerdzhikov           Dimitar    BUL          1026.2     534.7
## 4128   55   7    Bocharnikov            Sergey    BLR          1038.7     556.0
## 4129   56  78        Lessing            Roland    EST          1028.0     524.7
## 4130   57  87        Zhyrnyi         Oleksandr    UKR          1024.1     548.8
## 4131   58  32     Lindstroem           Fredrik    SWE          1018.6     545.6
## 4132   59  58       Siemakov         Volodymyr    UKR          1033.3     553.6
## 4133   60  33       Tsvetkov             Maxim    RUS          1006.0     540.4
## 4134   61  36        Beatrix    Jean Guillaume    FRA          1024.4     555.0
## 4135   62  99        Finello            Jeremy    SUI          1021.3     539.9
## 4136   63  70        Varabei            Maksim    BLR          1034.3     528.1
## 4137   64  63       Vaclavik              Adam    CZE          1040.1     539.8
## 4138   65  60         Waeger            Lorenz    AUT          1023.8     523.3
## 4139   66  54       Montello          Giuseppe    ITA          1040.5     556.5
## 4140   67  39            Gow             Scott    CAN          1030.5     528.4
## 4141   68  49       Chepelin          Vladimir    BLR          1052.7     556.6
## 4142   69  65     Podkorytov          Vassiliy    KAZ          1024.8     507.4
## 4143   70  64          Kazar             Matej    SVK          1044.0     533.9
## 4144   71  88         Soukup          Jaroslav    CZE          1040.8     553.4
## 4145   72  19        Sinapov             Anton    BUL          1063.9     511.3
## 4146   73  73        Yeremin             Roman    KAZ          1057.2     516.2
## 4147   74  86          Oblak            Lenart    SLO          1023.3     518.8
## 4148   75  90           Buta            George    ROU          1034.7     521.2
## 4149   76  68       Wiestner           Serafin    SUI          1058.4     517.8
## 4150   77  72      Tachizaki            Mikito    JPN          1058.7     570.9
## 4151   78  55         Dovzan              Miha    SLO          1052.4     502.4
## 4152   79 101    Soederhielm              Tiio    SWE          1040.3     561.8
## 4153   80  51        Otcenas            Martin    SVK          1048.9     545.3
## 4154   81  16        Gronman            Tuomas    FIN          1057.9     538.0
## 4155   82  69       Szczurek            Lukasz    POL          1041.7     532.8
## 4156   83   9        Hasilla             Tomas    SVK          1058.5     577.5
## 4157   84 100       Schommer              Paul    USA          1067.9     539.0
## 4158   85  85        Strolia          Vytautas    LTU          1088.5     557.9
## 4159   86  52       Fourcade             Simon    FRA          1087.4     522.9
## 4160   87  89        Remmelg            Martin    EST          1068.2     523.2
## 4161   88  35       Puchianu            Cornel    ROU          1086.2     563.6
## 4162   89  56        Angelis         Apostolos    GRE          1071.6     546.8
## 4163   90  81          Braun             Maxim    KAZ          1080.6     560.2
## 4164   91  94      Bormolini            Thomas    ITA          1075.6     556.8
## 4165   92  53     Dombrovski             Karol    LTU          1072.4     546.1
## 4166   93  83          Hoerl            Fabian    AUT          1074.7     543.0
## 4167   94  97       Malyshko            Dmitry    RUS          1082.5     559.5
## 4168   95  91        Seppala              Tero    FIN          1087.9     594.3
## 4169   96  59      Stenersen          Torstein    SWE          1098.7     537.9
## 4170   97  11          Guzik          Grzegorz    POL          1088.5     533.9
## 4171   98  79         Bricis            Ilmars    LAT          1090.6     542.8
## 4172   99  98 Nedza-Kubiniec           Andrzej    POL          1098.3     533.2
## 4173  100  82           Lusa          Daumants    LAT          1149.6     581.7
## 4174  101  95            Kim           Jongmin    KOR          1156.0     592.1
## 4175    1   5        Peiffer              Arnd    GER          1521.3     398.3
## 4176    2   6           Eder             Simon    AUT          1528.3     396.7
## 4177    3   3       Svendsen        Emil Hegle    NOR          1534.4     396.7
## 4178    4   2        Moravec            Ondrej    CZE          1534.2     401.0
## 4179    5   1       Fourcade            Martin    FRA          1548.3     413.9
## 4180    6  15          Hofer             Lukas    ITA          1557.7     376.9
## 4181    7   4            Boe Johannes Thingnes    NOR          1560.6     401.3
## 4182    8  13   Christiansen    Vetle Sjaastad    NOR          1555.9     400.3
## 4183    9   7   Rastorgujevs           Andrejs    LAT          1570.5     434.1
## 4184   10  29       Shipulin             Anton    RUS          1574.0     418.9
## 4185   11  32            Boe            Tarjei    NOR          1592.2     380.9
## 4186   12  23     Garanichev           Evgeniy    RUS          1580.4     374.3
## 4187   12  24      Desthieux             Simon    FRA          1592.9     382.2
## 4188   14  12           Rees             Roman    GER          1583.1     390.5
## 4189   15  18        Lapshin           Timofei    KOR          1594.0     411.5
## 4190   16  22           Anev          Krasimir    BUL          1598.5     385.2
## 4191   17  21      Birkeland        Lars Helge    NOR          1592.5     386.9
## 4192   18  44        Doherty              Sean    USA          1598.8     382.8
## 4193   19  27        Eliseev            Matvey    RUS          1593.5     414.6
## 4194   20  30           Doll          Benedikt    GER          1618.2     379.3
## 4195   21  26     Pidruchnyi            Dmytro    UKR          1616.3     415.9
## 4196   22  10         Roesch           Michael    BEL          1607.9     381.3
## 4197   23  11   Landertinger           Dominik    AUT          1637.7     407.4
## 4198   24  17       Windisch           Dominik    ITA          1637.7     381.2
## 4199   25  19           Graf           Florian    GER          1638.5     402.5
## 4200   26  25     Samuelsson         Sebastian    SWE          1639.2     389.3
## 4201   27  16         Bailey            Lowell    USA          1628.5     434.5
## 4202   28  31     Mesotitsch            Daniel    AUT          1638.9     419.9
## 4203   29   8    Bjoerndalen         Ole Einar    NOR          1646.9     392.9
## 4204   30  33          Iliev          Vladimir    BUL          1644.1     410.0
## 4205   31  40          Weger          Benjamin    SUI          1653.5     385.5
## 4206   32  14         Krcmar            Michal    CZE          1672.3     402.3
## 4207   33  35       Slesingr            Michal    CZE          1671.8     402.9
## 4208   34  36         Dolder             Mario    SUI          1660.2     424.9
## 4209   35  41         Claude            Fabien    FRA          1670.7     401.4
## 4210   36  42          Pryma             Artem    UKR          1665.2     391.6
## 4211   37  50            Gow         Christian    CAN          1669.5     395.4
## 4212   38  49        Abasheu           Dzmitry    BLR          1678.2     416.8
## 4213   39  46          Trsan               Rok    SLO          1680.1     421.4
## 4214   40  20          Bauer            Klemen    SLO          1684.6     409.2
## 4215   41  47        Semenov            Sergii    UKR          1696.1     389.6
## 4216   42  34        Nawrath           Philipp    GER          1703.7     442.1
## 4217   43  43       Nordgren              Leif    USA          1698.3     391.4
## 4218   44  28       Kaukenas             Tomas    LTU          1710.2     408.5
## 4219   45  56        Lessing            Roland    EST          1738.4     399.2
## 4220   46  54     Gerdzhikov           Dimitar    BUL          1739.2     400.6
## 4221   47  51       Kobonoki           Tsukasa    JPN          1736.8     398.6
## 4222   48  55    Bocharnikov            Sergey    BLR          1756.7     443.6
## 4223   49  58     Lindstroem           Fredrik    SWE          1757.5     425.9
## 4224   50  45          Green           Brendan    CAN          1762.7     456.8
## 4225   51  57        Zhyrnyi         Oleksandr    UKR          1793.2     409.1
## 4226   52  53         Zahkna              Rene    EST          1787.7     406.6
## 4227   53  39     Hiidensalo              Olli    FIN          1861.2     471.8
## 4228   54  59       Siemakov         Volodymyr    UKR          1865.6     437.9
## 4229    1  31       Fourcade            Martin    FRA          1014.4     520.2
## 4230    2  16       Shipulin             Anton    RUS          1001.8     503.4
## 4231    3  25       Svendsen        Emil Hegle    NOR          1017.3     520.8
## 4232    4  22            Boe Johannes Thingnes    NOR          1013.6     499.2
## 4233    5  38          Iliev          Vladimir    BUL          1016.6     526.1
## 4234    6   7   Rastorgujevs           Andrejs    LAT          1019.2     518.4
## 4235    7  42        Semenov            Sergii    UKR          1010.9     509.9
## 4236    8  43        Moravec            Ondrej    CZE          1019.3     510.4
## 4237    9  20       Eberhard            Julian    AUT          1044.2     508.5
## 4238   10  73   Bjoentegaard            Erlend    NOR          1033.6     527.9
## 4239   11  11        Peiffer              Arnd    GER          1027.2     515.3
## 4240   12   6       Tsvetkov             Maxim    RUS          1025.2     511.6
## 4241   13  44     Samuelsson         Sebastian    SWE          1038.7     527.3
## 4242   14   2    Bjoerndalen         Ole Einar    NOR          1029.5     508.7
## 4243   15  45         Lesser              Erik    GER          1035.1     529.8
## 4244   16  34 Fillon Maillet           Quentin    FRA          1034.9     504.9
## 4245   17  27        Schempp             Simon    GER          1040.8     534.9
## 4246   18  15            Gow             Scott    CAN          1034.8     519.9
## 4247   19  66         Soukup          Jaroslav    CZE          1030.9     520.2
## 4248   20   3         Bailey            Lowell    USA          1048.4     536.3
## 4249   21  33       Windisch           Dominik    ITA          1043.1     513.8
## 4250   22  29     Pidruchnyi            Dmytro    UKR          1048.7     513.9
## 4251   23   1          Pryma             Artem    UKR          1048.5     514.3
## 4252   24  36       Wiestner           Serafin    SUI          1062.3     565.5
## 4253   25  30           Doll          Benedikt    GER          1068.4     526.3
## 4254   26   5     Mesotitsch            Daniel    AUT          1056.4     545.9
## 4255   27  57    Kilchytskyy           Vitaliy    UKR          1042.3     521.1
## 4256   28   9         Krcmar            Michal    CZE          1061.1     554.2
## 4257   29  50         Komatz             David    AUT          1042.4     523.2
## 4258   30  23         Roesch           Michael    BEL          1049.1     545.6
## 4259   31  67        Beatrix    Jean Guillaume    FRA          1058.9     548.4
## 4260   32  48          Hofer             Lukas    ITA          1058.1     520.7
## 4261   33   8       Chepelin          Vladimir    BLR          1068.7     536.9
## 4262   34  81      Yaliotnau             Raman    BLR          1061.5     519.6
## 4263   35  13      Desthieux             Simon    FRA          1059.9     542.4
## 4264   36  35      Birkeland        Lars Helge    NOR          1064.2     533.4
## 4265   37  24          Bauer            Klemen    SLO          1067.2     530.9
## 4266   38  21           Anev          Krasimir    BUL          1055.4     539.2
## 4267   39  71     Hiidensalo              Olli    FIN          1074.0     551.7
## 4268   40  80         Dolder             Mario    SUI          1070.5     559.9
## 4269   41  47     Garanichev           Evgeniy    RUS          1071.3     540.8
## 4270   42  40        Otcenas            Martin    SVK          1074.6     555.9
## 4271   43  32        Hasilla             Tomas    SVK          1071.7     530.0
## 4272   44  26       Slesingr            Michal    CZE          1085.6     509.7
## 4273   45  77      Savitskiy               Yan    KAZ          1072.7     540.9
## 4274   46  72         Bischl          Matthias    GER          1065.5     550.6
## 4275   47  12     Lindstroem           Fredrik    SWE          1088.3     558.7
## 4276   48  46        Eliseev            Matvey    RUS          1090.6     563.2
## 4277   49  19           Eder             Simon    AUT          1078.7     577.6
## 4278   50  10        Babikov             Anton    RUS          1085.3     528.8
## 4279   51  51         Dovzan              Miha    SLO          1077.6     550.8
## 4280   52  39        Varabei            Maksim    BLR          1080.9     567.5
## 4281   53  63          Kazar             Matej    SVK          1098.1     549.6
## 4282   54  37          Green           Brendan    CAN          1085.8     540.7
## 4283   55  78        Currier           Russell    USA          1095.0     545.7
## 4284   56  83        Femling             Peppe    SWE          1090.9     549.2
## 4285   57  84     Gerdzhikov           Dimitar    BUL          1081.5     539.5
## 4286   58  90          Oblak            Lenart    SLO          1077.7     539.7
## 4287   59  60        Sinapov             Anton    BUL          1101.5     554.2
## 4288   60  61       Malyshko            Dmitry    RUS          1096.7     558.7
## 4289   61  82          Begue          Aristide    FRA          1099.6     536.3
## 4290   62 102        Finello            Jeremy    SUI          1097.2     575.8
## 4291   63  98           Sima            Michal    SVK          1102.2     577.6
## 4292   64  65          Braun             Maxim    KAZ          1090.6     542.0
## 4293   65  18       Fourcade             Simon    FRA          1121.7     556.5
## 4294   66  28          Weger          Benjamin    SUI          1104.1     540.2
## 4295   67  56       Kaukenas             Tomas    LTU          1106.1     570.7
## 4296   68  58      Tachizaki            Mikito    JPN          1113.0     558.7
## 4297   69  95         Waeger            Lorenz    AUT          1102.3     560.5
## 4298   70  17       Puchianu            Cornel    ROU          1115.4     598.6
## 4299   71  69          Guzik          Grzegorz    POL          1117.6     567.8
## 4300   72 101        Zhyrnyi         Oleksandr    UKR          1107.6     558.3
## 4301   73  88     Podkorytov          Vassiliy    KAZ          1118.5     557.5
## 4302   74  75         Davies              Macx    CAN          1118.4     564.5
## 4303   75  97        Remmelg            Martin    EST          1109.3     567.5
## 4304   76  96       Kristejn             Lukas    CZE          1120.2     566.2
## 4305   77  92       Darozhka        Aliaksandr    BLR          1116.0     590.7
## 4306   78  41         Dorfer          Matthias    GER          1102.8     564.5
## 4307   79 100           Buta            George    ROU          1114.9     577.0
## 4308   80  79        Lessing            Roland    EST          1109.8     579.0
## 4309   81 104         Pantov             Anton    KAZ          1120.7     573.1
## 4310   82  52      Bormolini            Thomas    ITA          1119.2     565.8
## 4311   83  54          Trsan               Rok    SLO          1154.0     605.7
## 4312   84  74     Dombrovski             Karol    LTU          1117.8     575.9
## 4313   85   4           Koiv             Kauri    EST          1150.8     555.7
## 4314   86  62           Faur             Remus    ROU          1137.3     583.5
## 4315   87  55         Bricis            Ilmars    LAT          1142.7     589.1
## 4316   88  87        Strolia          Vytautas    LTU          1144.5     570.6
## 4317   89  99       Montello          Giuseppe    ITA          1127.2     598.1
## 4318   90  86 Nedza-Kubiniec           Andrzej    POL          1129.7     575.1
## 4319   91  85          Ozaki            Kosuke    JPN          1136.0     603.8
## 4320   92  89       Gjesbakk           Fredrik    NOR          1168.6     594.6
## 4321   93  49        Leitner             Felix    AUT          1175.9     614.8
## 4322   94  76       Crnkovic          Kresimir    CRO          1168.4     610.1
## 4323   95  53         Orpana              Sami    FIN          1160.4     629.0
## 4324   96  68          Penar             Rafal    POL          1168.1     607.0
## 4325   97  94    Starodubets         Aleksandr    KOR          1142.1     568.6
## 4326   98  64            Kim           Jongmin    KOR          1187.5     639.4
## 4327   99  70          Dixon             Scott    GBR          1195.6     608.9
## 4328  100  93        Huhtala             Teemu    FIN          1224.1     609.7
## 4329  101  91        Slotins           Roberts    LAT          1230.2     638.4
## 4330    1   1       Fourcade            Martin    FRA          1799.0     437.4
## 4331    2   6        Schempp             Simon    GER          1831.4     451.3
## 4332    3  16        Babikov             Anton    RUS          1826.9     466.5
## 4333    4  20        Moravec            Ondrej    CZE          1827.5     465.5
## 4334    5  24     Pidruchnyi            Dmytro    UKR          1828.2     469.1
## 4335    6  19        Eliseev            Matvey    RUS          1828.5     439.5
## 4336    7   5    Bjoerndalen         Ole Einar    NOR          1832.2     446.6
## 4337    8  11 Fillon Maillet           Quentin    FRA          1830.8     440.7
## 4338    9   3            Boe Johannes Thingnes    NOR          1829.9     444.8
## 4339   10  15      Desthieux             Simon    FRA          1845.1     446.5
## 4340   11   8         Lesser              Erik    GER          1844.5     459.0
## 4341   12   2       Shipulin             Anton    RUS          1844.1     452.2
## 4342   13  23        Beatrix    Jean Guillaume    FRA          1835.8     473.2
## 4343   14   7        Peiffer              Arnd    GER          1839.9     462.6
## 4344   15  21      Birkeland        Lars Helge    NOR          1854.7     452.1
## 4345   16  30       Windisch           Dominik    ITA          1868.8     465.9
## 4346   17  27        Semenov            Sergii    UKR          1864.5     469.8
## 4347   18  10       Eberhard            Julian    AUT          1881.8     466.7
## 4348   19  12         Krcmar            Michal    CZE          1868.1     469.0
## 4349   20  28   Bjoentegaard            Erlend    NOR          1888.4     484.7
## 4350   21   9         Bailey            Lowell    USA          1877.2     496.1
## 4351   22   4       Tsvetkov             Maxim    RUS          1867.7     481.1
## 4352   23  17           Eder             Simon    AUT          1889.0     466.7
## 4353   24  14           Doll          Benedikt    GER          1905.3     490.6
## 4354   25  13   Rastorgujevs           Andrejs    LAT          1909.9     460.3
## 4355   26  22         Roesch           Michael    BEL          1892.4     476.1
## 4356   27  29         Soukup          Jaroslav    CZE          1904.3     524.5
## 4357   28  26          Iliev          Vladimir    BUL          1923.2     490.6
## 4358   29  25     Samuelsson         Sebastian    SWE          1940.9     473.6
## 4359   30  18       Slesingr            Michal    CZE          1948.1     500.5
## 4360    1   1       Fourcade            Martin    FRA          1620.3     404.2
## 4361    2   2       Shipulin             Anton    RUS          1661.1     434.1
## 4362    3  16 Fillon Maillet           Quentin    FRA          1669.8     414.2
## 4363    4  17        Schempp             Simon    GER          1674.0     415.0
## 4364    5   4            Boe Johannes Thingnes    NOR          1697.5     459.1
## 4365    6  30         Roesch           Michael    BEL          1702.3     416.4
## 4366    7   6   Rastorgujevs           Andrejs    LAT          1710.3     421.5
## 4367    8  31        Beatrix    Jean Guillaume    FRA          1722.9     437.9
## 4368    9  20         Bailey            Lowell    USA          1726.8     420.4
## 4369   10  28         Krcmar            Michal    CZE          1727.9     420.9
## 4370   11  41     Garanichev           Evgeniy    RUS          1724.2     416.8
## 4371   12  14    Bjoerndalen         Ole Einar    NOR          1715.2     418.8
## 4372   13   9       Eberhard            Julian    AUT          1754.8     410.9
## 4373   14  12       Tsvetkov             Maxim    RUS          1738.0     422.5
## 4374   15  25           Doll          Benedikt    GER          1748.2     416.6
## 4375   16  10   Bjoentegaard            Erlend    NOR          1744.3     456.1
## 4376   17  22     Pidruchnyi            Dmytro    UKR          1741.0     447.8
## 4377   18  13     Samuelsson         Sebastian    SWE          1750.2     467.6
## 4378   19  44       Slesingr            Michal    CZE          1756.8     415.0
## 4379   20  19         Soukup          Jaroslav    CZE          1738.5     455.1
## 4380   21   7        Semenov            Sergii    UKR          1749.0     444.0
## 4381   22   5          Iliev          Vladimir    BUL          1749.8     474.7
## 4382   23  35      Desthieux             Simon    FRA          1767.7     437.5
## 4383   24  15         Lesser              Erik    GER          1764.1     452.1
## 4384   25  21       Windisch           Dominik    ITA          1763.6     436.2
## 4385   26  11        Peiffer              Arnd    GER          1758.9     427.7
## 4386   27  23          Pryma             Artem    UKR          1769.4     413.3
## 4387   28  26     Mesotitsch            Daniel    AUT          1771.7     420.6
## 4388   29  24       Wiestner           Serafin    SUI          1786.6     446.7
## 4389   30  32          Hofer             Lukas    ITA          1791.1     426.0
## 4390   31  49           Eder             Simon    AUT          1786.1     424.4
## 4391   32  48        Eliseev            Matvey    RUS          1787.1     437.7
## 4392   33  33       Chepelin          Vladimir    BLR          1794.3     436.2
## 4393   34  50        Babikov             Anton    RUS          1812.5     443.1
## 4394   35  36      Birkeland        Lars Helge    NOR          1801.9     463.5
## 4395   36  46         Bischl          Matthias    GER          1818.7     449.5
## 4396   37  38           Anev          Krasimir    BUL          1817.2     448.5
## 4397   38  39     Hiidensalo              Olli    FIN          1822.2     451.9
## 4398   39  47     Lindstroem           Fredrik    SWE          1853.7     455.7
## 4399   40  18            Gow             Scott    CAN          1829.1     442.9
## 4400   41  45      Savitskiy               Yan    KAZ          1834.6     496.7
## 4401   42  40         Dolder             Mario    SUI          1844.8     455.3
## 4402   43  42        Otcenas            Martin    SVK          1852.9     452.2
## 4403   44  53          Kazar             Matej    SVK          1864.3     466.0
## 4404   45  27    Kilchytskyy           Vitaliy    UKR          1866.5     477.7
## 4405   46  37          Bauer            Klemen    SLO          1869.1     455.1
## 4406   47  60       Malyshko            Dmitry    RUS          1873.7     470.5
## 4407   48  34      Yaliotnau             Raman    BLR          1858.9     472.3
## 4408   49  29         Komatz             David    AUT          1876.0     486.2
## 4409   50   8        Moravec            Ondrej    CZE          1917.4     433.3
## 4410   51  43        Hasilla             Tomas    SVK          1919.1     480.4
## 4411   52  54          Green           Brendan    CAN          1933.6     454.9
## 4412   53  51         Dovzan              Miha    SLO          1935.8     468.6
## 4413   54  56        Femling             Peppe    SWE          1984.9     470.8
## 4414   55  59        Sinapov             Anton    BUL          1999.2     476.4
## 4415   56  52        Varabei            Maksim    BLR          2042.6     500.4
## 4416   57  58          Oblak            Lenart    SLO          2042.1     491.7
## 4417    1  31       Eberhard            Julian    AUT          1174.8     556.4
## 4418    2  22       Slesingr            Michal    CZE          1188.7     588.2
## 4419    3  26       Windisch           Dominik    ITA          1200.1     590.1
## 4420    4  70          Hofer             Lukas    ITA          1199.1     584.4
## 4421    5  40         Lesser              Erik    GER          1213.1     615.7
## 4422    6  44        Schempp             Simon    GER          1221.1     597.4
## 4423    7  34       Svendsen        Emil Hegle    NOR          1203.7     602.6
## 4424    8  23       Fourcade            Martin    FRA          1226.8     627.9
## 4425    9  35          Weger          Benjamin    SUI          1201.2     586.4
## 4426   10  43          Iliev          Vladimir    BUL          1232.8     623.8
## 4427   11  48       Malyshko            Dmitry    RUS          1222.3     603.4
## 4428   11  65   Landertinger           Dominik    AUT          1226.5     630.5
## 4429   13  18       Tsvetkov             Maxim    RUS          1222.6     615.5
## 4430   14  25        Semenov            Sergii    UKR          1229.7     620.9
## 4431   15  16        Peiffer              Arnd    GER          1237.3     626.7
## 4432   16  75        Beatrix    Jean Guillaume    FRA          1219.2     591.5
## 4433   17  52       Vaclavik              Adam    CZE          1226.5     627.0
## 4434   18  30        Babikov             Anton    RUS          1219.0     610.6
## 4435   19  20        Moravec            Ondrej    CZE          1233.2     621.2
## 4436   20  11    L'Abee-Lund            Henrik    NOR          1235.0     597.9
## 4437   21  14         Krcmar            Michal    CZE          1241.9     602.4
## 4438   22  92         Bischl          Matthias    GER          1229.8     626.6
## 4439   23   4    Kilchytskyy           Vitaliy    UKR          1242.9     580.4
## 4440   24  17       Shipulin             Anton    RUS          1251.8     624.0
## 4441   25  19     Mesotitsch            Daniel    AUT          1242.6     602.5
## 4442   26  93          Guzik          Grzegorz    POL          1239.6     614.6
## 4443   27  37 Fillon Maillet           Quentin    FRA          1254.0     618.5
## 4444   28  56       Siemakov         Volodymyr    UKR          1246.6     593.2
## 4445   29  81         Jaeger            Martin    SUI          1243.3     608.8
## 4446   30  49   Bjoentegaard            Erlend    NOR          1257.6     637.9
## 4447   31  99   Christiansen    Vetle Sjaastad    NOR          1232.4     617.9
## 4448   32  45    Bjoerndalen         Ole Einar    NOR          1254.5     595.2
## 4449   33  95         Shopin              Yury    RUS          1246.3     633.9
## 4450   34  32     Lindstroem           Fredrik    SWE          1262.5     622.3
## 4451   35  21          Burke               Tim    USA          1263.7     645.3
## 4452   36  36         Roesch           Michael    BEL          1252.1     612.6
## 4453   37  76       Crnkovic          Kresimir    CRO          1256.0     613.3
## 4454   38  96      Guigonnat           Antonin    FRA          1265.3     619.0
## 4455   39 100        Leitner             Felix    AUT          1264.7     599.0
## 4456   40  58      Savitskiy               Yan    KAZ          1258.1     605.3
## 4457   41  97           Faur             Remus    ROU          1254.4     623.4
## 4458   42   2         Claude            Fabien    FRA          1263.7     639.2
## 4459   43  42            Gow             Scott    CAN          1263.6     636.3
## 4460   44  57           Doll          Benedikt    GER          1298.6     674.3
## 4461   45   9         Dolder             Mario    SUI          1267.5     595.5
## 4462   46  82        Currier           Russell    USA          1284.1     638.6
## 4463   47  24           Eder             Simon    AUT          1284.7     610.4
## 4464   48  89       Kobonoki           Tsukasa    JPN          1274.1     640.4
## 4465   49  10           Graf           Florian    GER          1266.5     616.2
## 4466   50  41      Yaliotnau             Raman    BLR          1292.9     648.3
## 4467   51 105            Lee             Inbok    KOR          1250.4     618.8
## 4468   52 102       Montello          Giuseppe    ITA          1290.9     642.5
## 4469   53  91         Ermits             Kalev    EST          1271.3     624.0
## 4470   54  86    Bocharnikov            Sergey    BLR          1299.9     593.6
## 4471   55  84       Kubaliak            Michal    SVK          1256.4     610.2
## 4472   56  15          Kazar             Matej    SVK          1292.7     624.5
## 4473   57  13          Pryma             Artem    UKR          1302.5     642.5
## 4474   58  94       Arwidson            Tobias    SWE          1273.0     620.0
## 4475   59  77         Bricis            Ilmars    LAT          1283.0     605.2
## 4476   60  51     Gerdzhikov           Dimitar    BUL          1294.1     638.9
## 4477   61  63       Wiestner           Serafin    SUI          1288.1     642.4
## 4478   62  78         Pantov             Anton    KAZ          1285.1     598.8
## 4479   63  54        Strolia          Vytautas    LTU          1290.5     657.9
## 4480   64  39      Desthieux             Simon    FRA          1310.9     632.3
## 4481   65  50       Kaukenas             Tomas    LTU          1289.6     651.5
## 4482   66  74           Buta            George    ROU          1279.7     614.9
## 4483   67  62        Lessing            Roland    EST          1307.7     641.7
## 4484   68  67         Davies              Macx    CAN          1301.4     663.6
## 4485   69  12          Green           Brendan    CAN          1326.9     621.0
## 4486   70   6      Bormolini            Thomas    ITA          1313.8     588.5
## 4487   71   3         Soukup          Jaroslav    CZE          1326.6     676.0
## 4488   72  28       Puchianu            Cornel    ROU          1317.8     597.4
## 4489   73   1         Komatz             David    AUT          1306.2     673.3
## 4490   73  73      Tachizaki            Mikito    JPN          1319.3     638.7
## 4491   75  68        Otcenas            Martin    SVK          1319.7     595.0
## 4492   76  79      Stenersen          Torstein    SWE          1326.2     647.7
## 4493   77  80           Lusa          Daumants    LAT          1292.1     648.2
## 4494   78  87       Szczurek            Lukasz    POL          1320.9     633.1
## 4495   79  55            Kim           Jongmin    KOR          1300.8     628.8
## 4496   80  47        Doherty              Sean    USA          1317.0     656.1
## 4497   81  69         Dovzan              Miha    SLO          1312.4     612.3
## 4498   82 106       Invenius            Tuukka    FIN          1309.3     651.9
## 4499   83 101       Partalov           Dimitar    BUL          1319.5     641.2
## 4500   84   8        Sinapov             Anton    BUL          1354.8     630.6
## 4501   85  64        Varabei            Maksim    BLR          1347.4     654.1
## 4502   86  72     Ponsiluoma            Martin    SWE          1344.1     665.7
## 4503   87   5       Chepelin          Vladimir    BLR          1369.4     609.4
## 4504   88  83        Yeremin             Roman    KAZ          1369.2     671.3
## 4505   89  61          Trsan               Rok    SLO          1346.3     655.2
## 4506   90  88          Hudec           Matthew    CAN          1328.7     662.5
## 4507   91  46         Orpana              Sami    FIN          1335.3     655.1
## 4508   92  38            Gow         Christian    CAN          1350.0     679.1
## 4509   93  27           Koiv             Kauri    EST          1354.2     689.6
## 4510   94  85          Braun             Maxim    KAZ          1381.8     638.7
## 4511   95   7        Eliseev            Matvey    RUS          1391.1     657.9
## 4512   96  60        Angelis         Apostolos    GRE          1387.6     640.1
## 4513   97  29          Bauer            Klemen    SLO          1426.1     639.4
## 4514   98 104        Slotins           Roberts    LAT          1391.4     682.3
## 4515   99  53  Loukkaanhuhta             Mikko    FIN          1404.8     680.9
## 4516  100  59 Nedza-Kubiniec           Andrzej    POL          1407.8     685.1
## 4517  101 103    Suslavicius             Rokas    LTU          1416.1     692.0
## 4518  102  71         Hodzic              Edin    SRB          1442.0     676.3
## 4519    1   3        Schempp             Simon    GER          1930.6     479.5
## 4520    2   6         Lesser              Erik    GER          1929.6     499.6
## 4521    3   1       Fourcade            Martin    FRA          1929.3     458.8
## 4522    4  16        Beatrix    Jean Guillaume    FRA          1929.7     473.8
## 4523    5   8    Bjoerndalen         Ole Einar    NOR          1927.4     501.1
## 4524    6  17           Doll          Benedikt    GER          1977.9     483.1
## 4525    7   7       Svendsen        Emil Hegle    NOR          1960.0     504.9
## 4526    8  10        Babikov             Anton    RUS          1967.1     502.4
## 4527    9  15         Krcmar            Michal    CZE          1981.5     477.9
## 4528   10  23          Weger          Benjamin    SUI          1979.1     476.4
## 4529   11   5       Tsvetkov             Maxim    RUS          1976.2     487.8
## 4530   12  28   Landertinger           Dominik    AUT          1984.8     513.4
## 4531   13  14        Moravec            Ondrej    CZE          2003.4     511.6
## 4532   14   2       Shipulin             Anton    RUS          1998.1     473.4
## 4533   15  18        Eliseev            Matvey    RUS          1992.6     495.9
## 4534   16  24          Hofer             Lukas    ITA          2008.0     501.3
## 4535   17  27       Malyshko            Dmitry    RUS          2013.3     482.1
## 4536   18   4        Peiffer              Arnd    GER          2025.3     534.1
## 4537   19  20         Roesch           Michael    BEL          2003.3     500.9
## 4538   20  26    L'Abee-Lund            Henrik    NOR          2022.7     478.1
## 4539   21  25          Iliev          Vladimir    BUL          2027.6     473.9
## 4540   22   9       Eberhard            Julian    AUT          2043.8     508.1
## 4541   23  21        Semenov            Sergii    UKR          2043.3     506.3
## 4542   24  30     Mesotitsch            Daniel    AUT          2036.0     490.8
## 4543   25  29       Siemakov         Volodymyr    UKR          2042.9     517.8
## 4544   26  19      Desthieux             Simon    FRA          2042.8     536.4
## 4545   27  22     Pidruchnyi            Dmytro    UKR          2057.1     503.7
## 4546   28  11       Windisch           Dominik    ITA          2065.7     529.1
## 4547   29  12       Slesingr            Michal    CZE          2107.6     497.7
## 4548    1   8       Fourcade            Martin    FRA          1821.7     442.4
## 4549    2  15        Peiffer              Arnd    GER          1916.4     500.3
## 4550    3   3       Windisch           Dominik    ITA          1947.4     493.7
## 4551    4   7       Svendsen        Emil Hegle    NOR          1946.1     477.7
## 4552    5   5         Lesser              Erik    GER          1959.4     520.9
## 4553    6  18        Babikov             Anton    RUS          1953.5     439.5
## 4554    7   2       Slesingr            Michal    CZE          1982.8     544.7
## 4555    8  20    L'Abee-Lund            Henrik    NOR          1979.2     490.7
## 4556    9  57          Pryma             Artem    UKR          1975.8     464.9
## 4557   10  13       Tsvetkov             Maxim    RUS          1970.6     549.0
## 4558   11   9          Weger          Benjamin    SUI          1984.8     451.2
## 4559   12   4          Hofer             Lukas    ITA          1990.8     445.2
## 4560   13  28       Siemakov         Volodymyr    UKR          1983.1     465.2
## 4561   14  36         Roesch           Michael    BEL          1983.2     468.2
## 4562   15  16        Beatrix    Jean Guillaume    FRA          1976.6     509.7
## 4563   16  24       Shipulin             Anton    RUS          2009.5     468.8
## 4564   17  10          Iliev          Vladimir    BUL          2009.0     464.3
## 4565   18  11       Malyshko            Dmitry    RUS          2004.4     459.2
## 4566   19   1       Eberhard            Julian    AUT          2027.4     583.3
## 4567   20   6        Schempp             Simon    GER          2017.3     459.2
## 4568   21  19        Moravec            Ondrej    CZE          2010.3     483.7
## 4569   22  25     Mesotitsch            Daniel    AUT          2009.1     489.2
## 4570   23  42         Claude            Fabien    FRA          2034.9     515.5
## 4571   24  44           Doll          Benedikt    GER          2039.6     446.0
## 4572   25  27 Fillon Maillet           Quentin    FRA          2028.0     485.8
## 4573   26  35          Burke               Tim    USA          2041.5     498.9
## 4574   27  31   Christiansen    Vetle Sjaastad    NOR          2028.1     466.3
## 4575   28  21         Krcmar            Michal    CZE          2048.1     535.0
## 4576   29  14        Semenov            Sergii    UKR          2047.8     498.4
## 4577   30  12   Landertinger           Dominik    AUT          2083.6     517.7
## 4578   31  33         Shopin              Yury    RUS          2093.4     503.6
## 4579   32  38      Guigonnat           Antonin    FRA          2110.4     476.8
## 4580   33  17       Vaclavik              Adam    CZE          2098.3     510.3
## 4581   34  46        Currier           Russell    USA          2116.0     505.9
## 4582   35  22         Bischl          Matthias    GER          2118.8     533.2
## 4583   36  54    Bocharnikov            Sergey    BLR          2123.8     497.1
## 4584   37  32    Bjoerndalen         Ole Einar    NOR          2108.5     506.9
## 4585   38  60     Gerdzhikov           Dimitar    BUL          2129.4     512.1
## 4586   39  56          Kazar             Matej    SVK          2140.5     509.1
## 4587   40  30   Bjoentegaard            Erlend    NOR          2164.9     561.9
## 4588   41  41           Faur             Remus    ROU          2155.9     515.4
## 4589   42  34     Lindstroem           Fredrik    SWE          2168.0     512.5
## 4590   43  52       Montello          Giuseppe    ITA          2168.4     491.1
## 4591   44  40      Savitskiy               Yan    KAZ          2180.4     478.1
## 4592   45  43            Gow             Scott    CAN          2174.3     536.6
## 4593   46  45         Dolder             Mario    SUI          2187.4     485.6
## 4594   47  58       Arwidson            Tobias    SWE          2165.1     483.7
## 4595   48  23    Kilchytskyy           Vitaliy    UKR          2215.8     574.4
## 4596   49  49           Graf           Florian    GER          2215.3     588.4
## 4597   50  29         Jaeger            Martin    SUI          2246.6     545.4
## 4598   51  39        Leitner             Felix    AUT          2253.4     529.5
## 4599   52  53         Ermits             Kalev    EST          2254.1     534.7
## 4600   53  26          Guzik          Grzegorz    POL          2280.3     520.0
## 4601   54  48       Kobonoki           Tsukasa    JPN          2291.6     551.1
## 4602   55  55       Kubaliak            Michal    SVK          2371.2     576.0
## 4603   56  51            Lee             Inbok    KOR          2403.4     633.9
## 4604    1  11       Fourcade            Martin    FRA           986.6     487.1
## 4605    2  44     Lindstroem           Fredrik    SWE          1024.1     505.8
## 4606    3   2        Peiffer              Arnd    GER          1022.7     506.8
## 4607    4  18           Doll          Benedikt    GER          1030.3     527.8
## 4608    5  23       Eberhard            Julian    AUT          1042.1     518.1
## 4609    6  43       Windisch           Dominik    ITA          1022.0     505.5
## 4610    7  45        Babikov             Anton    RUS          1031.9     518.3
## 4611    8  77      Desthieux             Simon    FRA          1035.5     523.3
## 4612    9  24     Pidruchnyi            Dmytro    UKR          1029.4     517.1
## 4613   10  26       Fourcade             Simon    FRA          1034.1     503.7
## 4614   10  31       Tsvetkov             Maxim    RUS          1026.3     520.1
## 4615   12  20    Bjoerndalen         Ole Einar    NOR          1024.6     509.9
## 4616   13  30         Bailey            Lowell    USA          1025.4     509.2
## 4617   14   1       Svendsen        Emil Hegle    NOR          1041.0     527.2
## 4618   15  41         Lesser              Erik    GER          1032.4     511.5
## 4619   16  61        Eliseev            Matvey    RUS          1043.8     531.3
## 4620   17   9       Slesingr            Michal    CZE          1039.5     510.8
## 4621   18  40   Rastorgujevs           Andrejs    LAT          1042.8     529.3
## 4622   19  79     Samuelsson         Sebastian    SWE          1034.1     519.4
## 4623   20  32          Pryma             Artem    UKR          1035.9     522.2
## 4624   21  22        Schempp             Simon    GER          1056.4     520.2
## 4625   22  47   Bjoentegaard            Erlend    NOR          1045.7     533.6
## 4626   23  35        Beatrix    Jean Guillaume    FRA          1041.2     527.1
## 4627   24   7           Eder             Simon    AUT          1043.2     525.8
## 4628   25  38          Weger          Benjamin    SUI          1045.0     521.8
## 4629   26  67       Wiestner           Serafin    SUI          1058.1     543.9
## 4630   27  60      Birkeland        Lars Helge    NOR          1044.8     506.3
## 4631   28  33       Shipulin             Anton    RUS          1050.5     526.7
## 4632   29  16          Burke               Tim    USA          1058.7     540.9
## 4633   30  14            Boe Johannes Thingnes    NOR          1066.2     534.3
## 4634   31  95       Malyshko            Dmitry    RUS          1066.2     529.9
## 4635   32  12          Green           Brendan    CAN          1075.4     518.6
## 4636   33  19   Landertinger           Dominik    AUT          1074.5     558.8
## 4637   34  70    Kilchytskyy           Vitaliy    UKR          1067.9     520.7
## 4638   35  27        Moravec            Ondrej    CZE          1065.3     548.2
## 4639   36  39     Mesotitsch            Daniel    AUT          1062.5     522.0
## 4640   37  29        Semenov            Sergii    UKR          1063.5     539.4
## 4641   38  42         Krcmar            Michal    CZE          1072.1     545.1
## 4642   39  96         Claude            Fabien    FRA          1081.3     554.1
## 4643   40  21          Hofer             Lukas    ITA          1097.5     538.4
## 4644   41  69         Roesch           Michael    BEL          1071.2     558.2
## 4645   42  15           Anev          Krasimir    BUL          1083.7     565.0
## 4646   43   5          Nelin            Jesper    SWE          1093.6     585.2
## 4647   44  72        Hasilla             Tomas    SVK          1084.0     528.6
## 4648   45  50        Leitner             Felix    AUT          1079.7     562.0
## 4649   46  83     Gerdzhikov           Dimitar    BUL          1075.6     531.8
## 4650   47  81      Yaliotnau             Raman    BLR          1098.7     538.4
## 4651   48  48          Trsan               Rok    SLO          1096.2     527.7
## 4652   49  25     Garanichev           Evgeniy    RUS          1093.9     533.1
## 4653   50  62            Gow             Scott    CAN          1083.2     543.0
## 4654   51  55     Hiidensalo              Olli    FIN          1095.8     560.8
## 4655   52  46         Davies              Macx    CAN          1089.8     549.2
## 4656   53   6       Kaukenas             Tomas    LTU          1080.1     537.0
## 4657   54  28 Fillon Maillet           Quentin    FRA          1102.5     532.0
## 4658   55  74       Vaclavik              Adam    CZE          1096.8     519.8
## 4659   56   8       Chepelin          Vladimir    BLR          1100.3     558.5
## 4660   57  85           Rees             Roman    GER          1086.2     551.7
## 4661   58 100    L'Abee-Lund            Henrik    NOR          1117.4     557.6
## 4662   59  73           Graf           Florian    GER          1093.5     546.9
## 4663   60  10         Dolder             Mario    SUI          1116.6     550.7
## 4664   61  34        Varabei            Maksim    BLR          1107.5     567.5
## 4665   62  37          Iliev          Vladimir    BUL          1115.5     578.9
## 4666   63  99     Grossegger              Sven    AUT          1103.7     579.1
## 4667   64  56       Puchianu            Cornel    ROU          1113.7     592.4
## 4668   65  66         Zahkna              Rene    EST          1095.5     555.5
## 4669   66  87     Podkorytov          Vassiliy    KAZ          1106.7     540.7
## 4670   67  58         Pantov             Anton    KAZ          1090.6     543.9
## 4671   68  57          Braun             Maxim    KAZ          1104.0     536.3
## 4672   69  53        Currier           Russell    USA          1130.7     545.8
## 4673   70  76      Tachizaki            Mikito    JPN          1099.1     557.8
## 4674   71  63      Bormolini            Thomas    ITA          1104.2     552.9
## 4675   72  75           Faur             Remus    ROU          1109.2     571.3
## 4676   73 101           Sima            Michal    SVK          1108.9     565.8
## 4677   74  78        Gronman            Tuomas    FIN          1096.7     545.4
## 4678   75  84       Siemakov         Volodymyr    UKR          1121.7     576.0
## 4679   76  80       Drinovec             Mitja    SLO          1108.3     544.1
## 4680   77  71        Sinapov             Anton    BUL          1132.4     602.7
## 4681   78  94        Finello            Jeremy    SUI          1120.9     560.7
## 4682   79  59          Janik           Mateusz    POL          1115.9     556.8
## 4683   80  64            Kim           Jongmin    KOR          1100.9     560.6
## 4684   81  65     Dombrovski             Karol    LTU          1132.4     592.9
## 4685   82  98           Buta            George    ROU          1129.2     566.8
## 4686   83  51           Koiv             Kauri    EST          1138.9     607.6
## 4687   84 105       Montello          Giuseppe    ITA          1138.5     592.4
## 4688   85   3          Bauer            Klemen    SLO          1151.2     601.3
## 4689   86  90          Penar             Rafal    POL          1126.0     574.5
## 4690   87 102          Oblak            Lenart    SLO          1130.1     591.1
## 4691   88  97        Strolia          Vytautas    LTU          1144.8     551.4
## 4692   89  89        Slotins           Roberts    LAT          1143.7     602.1
## 4693   90  86            Gow         Christian    CAN          1131.7     596.7
## 4694   91  54         Bricis            Ilmars    LAT          1155.3     594.1
## 4695   92   4          Kazar             Matej    SVK          1193.2     595.9
## 4696   93  93         Soukup          Jaroslav    CZE          1170.1     593.9
## 4697   94 103      Stenersen          Torstein    SWE          1164.2     561.6
## 4698   95  92        Huhtala             Teemu    FIN          1158.1     598.2
## 4699   96  17          Smith            Nathan    CAN          1169.6     596.6
## 4700   97  36        Otcenas            Martin    SVK          1206.9     663.6
## 4701   98  82      Talihaerm             Johan    EST          1196.3     641.2
## 4702   99  52          Guzik          Grzegorz    POL          1191.9     563.3
## 4703  100  13      Savitskiy               Yan    KAZ          1237.4     617.8
## 4704  101  91            Lee             Inbok    KOR          1185.6     589.8
## 4705  102  88       Kobonoki           Tsukasa    JPN          1226.7     629.9
## 4706  103  68          Dixon             Scott    GBR          1188.9     610.4
## 4707  104  49       Crnkovic          Kresimir    CRO          1246.6     598.1
## 4708  105 104         Liadov             Yuryi    BLR          1219.9     636.6
## 4709    1  10       Fourcade            Martin    FRA          2557.6     619.1
## 4710    2  15            Boe Johannes Thingnes    NOR          2573.7     765.6
## 4711    3  17       Chepelin          Vladimir    BLR          2609.3     640.2
## 4712    4  40      Birkeland        Lars Helge    NOR          2668.5     629.3
## 4713    5  25    Bjoerndalen         Ole Einar    NOR          2672.0     702.2
## 4714    6   1   Rastorgujevs           Andrejs    LAT          2694.3     771.9
## 4715    7  21           Anev          Krasimir    BUL          2673.5     644.3
## 4716    8  94           Graf           Florian    GER          2673.0     716.0
## 4717    9   8     Lindstroem           Fredrik    SWE          2694.6     698.0
## 4718   10  19          Weger          Benjamin    SUI          2690.2     719.9
## 4719   11  35       Shipulin             Anton    RUS          2713.0     825.8
## 4720   12  16           Eder             Simon    AUT          2725.0     700.7
## 4721   13  36       Fourcade             Simon    FRA          2726.9     634.3
## 4722   14  78       Puchianu            Cornel    ROU          2741.1     711.5
## 4723   15  18         Bailey            Lowell    USA          2765.0     763.0
## 4724   16  27          Burke               Tim    USA          2747.7     720.2
## 4725   17  23        Moravec            Ondrej    CZE          2751.1     650.8
## 4726   18  29       Eberhard            Julian    AUT          2799.5     764.8
## 4727   19  33          Hofer             Lukas    ITA          2766.0     658.6
## 4728   20  79        Gronman            Tuomas    FIN          2742.0     675.0
## 4729   21  52           Koiv             Kauri    EST          2768.3     716.6
## 4730   22   2       Tsvetkov             Maxim    RUS          2776.3     742.0
## 4731   23   7     Garanichev           Evgeniy    RUS          2797.6     696.8
## 4732   24  97  Gjermundshaug            Vegard    NOR          2803.2     633.7
## 4733   25   5       Slesingr            Michal    CZE          2800.1     697.1
## 4734   26  62     Mesotitsch            Daniel    AUT          2788.3     788.7
## 4735   27  81        Hasilla             Tomas    SVK          2775.9     727.6
## 4736   28  20 Fillon Maillet           Quentin    FRA          2808.5     697.7
## 4737   29  46        Otcenas            Martin    SVK          2788.2     664.3
## 4738   30   6           Doll          Benedikt    GER          2822.3     873.7
## 4739   31  45         Lesser              Erik    GER          2814.5     690.1
## 4740   32  26        Peiffer              Arnd    GER          2808.8     766.6
## 4741   33   3          Bauer            Klemen    SLO          2825.1     694.3
## 4742   34  41          Iliev          Vladimir    BUL          2831.4     683.9
## 4743   35  76        Beatrix    Jean Guillaume    FRA          2809.7     706.6
## 4744   36  24          Kazar             Matej    SVK          2823.1     653.2
## 4745   37  50        Sinapov             Anton    BUL          2815.6     734.7
## 4746   38  63      Bormolini            Thomas    ITA          2834.7     784.4
## 4747   39  83       Drinovec             Mitja    SLO          2809.9     739.1
## 4748   40  84        Varabei            Maksim    BLR          2823.3     733.8
## 4749   41  88       Siemakov         Volodymyr    UKR          2819.3     744.1
## 4750   42  48         Krcmar            Michal    CZE          2859.7     777.1
## 4751   43  22          Smith            Nathan    CAN          2833.4     737.4
## 4752   44  13      Savitskiy               Yan    KAZ          2858.8     784.8
## 4753   45  43      Stenersen          Torstein    SWE          2861.0     788.5
## 4754   46   9        Schempp             Simon    GER          2895.2     742.8
## 4755   47  56           Buta            George    ROU          2849.6     744.6
## 4756   48  73           Rees             Roman    GER          2885.4     829.4
## 4757   49  28      Desthieux             Simon    FRA          2879.9     883.8
## 4758   50  86         Shopin              Yury    RUS          2889.9     785.1
## 4759   51  11   Bjoentegaard            Erlend    NOR          2894.2     846.2
## 4760   52  64         Dolder             Mario    SUI          2909.9     796.0
## 4761   53  60    Kilchytskyy           Vitaliy    UKR          2919.9     736.5
## 4762   54  77        Currier           Russell    USA          2949.3     771.5
## 4763   55  38       Wiestner           Serafin    SUI          2946.4     834.8
## 4764   56  54     Hiidensalo              Olli    FIN          2939.8     751.3
## 4765   57  44        Babikov             Anton    RUS          2950.1     847.8
## 4766   58  90        Finello            Jeremy    SUI          2954.8     772.3
## 4767   59  34          Pryma             Artem    UKR          2956.1     831.7
## 4768   60  67            Gow             Scott    CAN          2949.2     800.2
## 4769   61  39      Yaliotnau             Raman    BLR          2963.4     828.0
## 4770   62  42         Davies              Macx    CAN          2923.5     760.5
## 4771   63  82         Bricis            Ilmars    LAT          2954.5     859.7
## 4772   64  80          Guzik          Grzegorz    POL          2954.0     797.6
## 4773   65  70    L'Abee-Lund            Henrik    NOR          3003.1     750.8
## 4774   66   4       Windisch           Dominik    ITA          2987.9     887.8
## 4775   67  55          Trsan               Rok    SLO          2966.2     815.2
## 4776   68  99        Strolia          Vytautas    LTU          2962.2     821.3
## 4777   69  69          Nelin            Jesper    SWE          3023.6     689.5
## 4778   70  47     Grossegger              Sven    AUT          2983.2     750.9
## 4779   71  51    Bocharnikov            Sergey    BLR          3024.1     767.5
## 4780   72  85      Ungureanu            Marius    ROU          2984.3     807.2
## 4781   73  87      Tachizaki            Mikito    JPN          3015.4     673.2
## 4782   74  68          Braun             Maxim    KAZ          2999.8     750.3
## 4783   75  72         Roesch           Michael    BEL          3027.4     893.8
## 4784   76 101     Kletcherov           Michail    BUL          2994.8     770.0
## 4785   77 103         Claude            Fabien    FRA          3018.9     880.8
## 4786   78  57       Crnkovic          Kresimir    CRO          3048.9     723.1
## 4787   79  66     Dombrovski             Karol    LTU          3037.9     681.0
## 4788   80  74       Malyshko            Dmitry    RUS          3070.8     690.9
## 4789   81 106          Penar             Rafal    POL          3005.7     823.3
## 4790   82  59         Pantov             Anton    KAZ          3021.3     829.3
## 4791   83  91        Femling             Peppe    SWE          3050.3     731.5
## 4792   84  65         Zahkna              Rene    EST          3067.8     741.0
## 4793   85  30       Kaukenas             Tomas    LTU          3090.5     848.5
## 4794   86  49       Kobonoki           Tsukasa    JPN          3099.2     750.3
## 4795   87 102            Lee             Inbok    KOR          3097.3     824.0
## 4796   88  12   Landertinger           Dominik    AUT          3140.4     768.6
## 4797   89  14          Green           Brendan    CAN          3100.3     857.5
## 4798   90  75          Janik           Mateusz    POL          3099.5     831.1
## 4799   91  31        Zhyrnyi         Oleksandr    UKR          3132.0     806.2
## 4800   92  32        Semenov            Sergii    UKR          3181.1     891.2
## 4801   93  58    Starodubets         Aleksandr    KOR          3148.0     838.8
## 4802   94 105           Lusa          Daumants    LAT          3135.5     859.5
## 4803   95  92       Vaclavik              Adam    CZE          3225.1     854.0
## 4804   96  53         Dovzan              Miha    SLO          3196.4     857.2
## 4805   97  61         Soukup          Jaroslav    CZE          3220.0     924.5
## 4806   98 100      Talihaerm             Johan    EST          3257.3     926.1
## 4807   99  96            Gow         Christian    CAN          3202.1     820.8
## 4808  100  89           Sima            Michal    SVK          3322.8     900.8
## 4809  101  98     Podkorytov          Vassiliy    KAZ          3344.8     808.4
## 4810  102  93       Montello          Giuseppe    ITA          3356.8     839.5
## 4811  103 104        Huhtala             Teemu    FIN          3337.3     876.1
## 4812    1   7        Babikov             Anton    RUS          1575.3     381.8
## 4813    2  11       Tsvetkov             Maxim    RUS          1579.2     383.2
## 4814    3   1       Fourcade            Martin    FRA          1586.1     425.0
## 4815    4   3        Peiffer              Arnd    GER          1628.5     379.4
## 4816    5  15         Lesser              Erik    GER          1626.9     406.0
## 4817    6  10       Fourcade             Simon    FRA          1620.3     383.1
## 4818    7  38         Krcmar            Michal    CZE          1633.6     389.6
## 4819    8  28       Shipulin             Anton    RUS          1639.2     373.5
## 4820    9  21        Schempp             Simon    GER          1643.4     399.9
## 4821   10  30            Boe Johannes Thingnes    NOR          1650.7     393.5
## 4822   11  23        Beatrix    Jean Guillaume    FRA          1642.7     410.7
## 4823   12  12    Bjoerndalen         Ole Einar    NOR          1645.1     405.9
## 4824   13   9     Pidruchnyi            Dmytro    UKR          1644.7     413.0
## 4825   14   8      Desthieux             Simon    FRA          1650.6     439.9
## 4826   15  13         Bailey            Lowell    USA          1642.2     442.2
## 4827   16  14       Svendsen        Emil Hegle    NOR          1661.9     387.0
## 4828   17  16        Eliseev            Matvey    RUS          1664.7     427.0
## 4829   18  35        Moravec            Ondrej    CZE          1668.1     390.8
## 4830   19  58    L'Abee-Lund            Henrik    NOR          1675.8     385.4
## 4831   20  19     Samuelsson         Sebastian    SWE          1671.7     404.5
## 4832   21  33   Landertinger           Dominik    AUT          1671.3     399.7
## 4833   22  17       Slesingr            Michal    CZE          1675.2     385.6
## 4834   23  24           Eder             Simon    AUT          1670.8     424.4
## 4835   24  20          Pryma             Artem    UKR          1666.7     439.1
## 4836   25   6       Windisch           Dominik    ITA          1665.9     414.2
## 4837   26  31       Malyshko            Dmitry    RUS          1680.2     395.5
## 4838   27   5       Eberhard            Julian    AUT          1691.8     420.5
## 4839   28  27      Birkeland        Lars Helge    NOR          1674.3     424.5
## 4840   29  39         Claude            Fabien    FRA          1691.4     400.6
## 4841   30  49     Garanichev           Evgeniy    RUS          1699.6     407.9
## 4842   31  18   Rastorgujevs           Andrejs    LAT          1697.3     432.0
## 4843   32  43          Nelin            Jesper    SWE          1705.1     407.8
## 4844   33   4           Doll          Benedikt    GER          1717.9     455.3
## 4845   34  36     Mesotitsch            Daniel    AUT          1717.1     396.0
## 4846   35  29          Burke               Tim    USA          1719.8     429.7
## 4847   36  57           Rees             Roman    GER          1729.2     417.1
## 4848   37  22   Bjoentegaard            Erlend    NOR          1734.4     420.1
## 4849   38   2     Lindstroem           Fredrik    SWE          1726.5     452.0
## 4850   39  41         Roesch           Michael    BEL          1739.8     389.0
## 4851   40  40          Hofer             Lukas    ITA          1746.5     437.7
## 4852   41  59           Graf           Florian    GER          1743.8     423.3
## 4853   42  55       Vaclavik              Adam    CZE          1756.6     436.5
## 4854   43  45        Leitner             Felix    AUT          1754.4     415.4
## 4855   44  44        Hasilla             Tomas    SVK          1755.3     412.3
## 4856   45  51     Hiidensalo              Olli    FIN          1763.5     446.7
## 4857   46  42           Anev          Krasimir    BUL          1763.0     439.7
## 4858   47  50            Gow             Scott    CAN          1769.8     427.0
## 4859   48  26       Wiestner           Serafin    SUI          1780.4     430.5
## 4860   49  34    Kilchytskyy           Vitaliy    UKR          1778.8     420.6
## 4861   50  32          Green           Brendan    CAN          1786.5     450.2
## 4862   51  52         Davies              Macx    CAN          1795.1     455.2
## 4863   52  37        Semenov            Sergii    UKR          1784.3     465.9
## 4864   53  60         Dolder             Mario    SUI          1805.9     476.0
## 4865   54  47      Yaliotnau             Raman    BLR          1813.8     444.0
## 4866   55  48          Trsan               Rok    SLO          1828.5     481.0
## 4867   56  25          Weger          Benjamin    SUI          1839.1     429.8
## 4868   57  56       Chepelin          Vladimir    BLR          1869.3     485.6
## 4869   58  53       Kaukenas             Tomas    LTU          1857.6     484.7
## 4870   59  46     Gerdzhikov           Dimitar    BUL          1864.3     465.2
## 4871    1  15            Boe Johannes Thingnes    NOR           991.1     501.8
## 4872    2  27       Fourcade            Martin    FRA          1015.5     523.7
## 4873    3 106       Shipulin             Anton    RUS          1006.0     512.5
## 4874    4  12   Landertinger           Dominik    AUT          1021.3     519.4
## 4875    5   8        Semenov            Sergii    UKR          1018.0     514.9
## 4876    6  36            Boe            Tarjei    NOR          1028.6     531.0
## 4877    7  28        Moravec            Ondrej    CZE          1015.9     512.5
## 4878    8   4     Garanichev           Evgeniy    RUS          1009.4     510.2
## 4879    9  48      Desthieux             Simon    FRA          1029.4     526.5
## 4880   10 100       Eberhard            Julian    AUT          1036.1     537.2
## 4881   11  51           Doll          Benedikt    GER          1036.6     515.0
## 4882   12 107           Eder             Simon    AUT          1029.8     511.0
## 4883   13  19       Slesingr            Michal    CZE          1043.6     521.1
## 4884   14   1        Peiffer              Arnd    GER          1043.6     539.6
## 4885   15  14     Lindstroem           Fredrik    SWE          1033.2     538.2
## 4886   16  32 Fillon Maillet           Quentin    FRA          1041.1     504.9
## 4887   17   3          Bauer            Klemen    SLO          1036.4     534.4
## 4888   18  38           Anev          Krasimir    BUL          1034.6     520.5
## 4889   19  22        Beatrix    Jean Guillaume    FRA          1043.6     539.6
## 4890   20   9       Svendsen        Emil Hegle    NOR          1036.2     539.7
## 4891   21  24          Hofer             Lukas    ITA          1049.8     513.1
## 4892   22   2    Bocharnikov            Sergey    BLR          1044.8     539.4
## 4893   23  29   Rastorgujevs           Andrejs    LAT          1062.4     552.2
## 4894   24  25        Schempp             Simon    GER          1053.1     520.2
## 4895   25  94       Gjesbakk           Fredrik    NOR          1034.1     529.6
## 4896   26  52       Puchianu            Cornel    ROU          1043.4     531.9
## 4897   27  18          Weger          Benjamin    SUI          1044.2     530.2
## 4898   28  50         Krcmar            Michal    CZE          1060.3     557.7
## 4899   29  43       Wiestner           Serafin    SUI          1067.3     539.8
## 4900   30 108         Volkov            Alexey    RUS          1046.7     530.3
## 4901   31  49        Eliseev            Matvey    RUS          1019.8     515.9
## 4902   32  37         Waeger            Lorenz    AUT          1053.4     534.7
## 4903   33  41    L'Abee-Lund            Henrik    NOR          1086.2     537.0
## 4904   34  55         Dovzan              Miha    SLO          1057.6     531.8
## 4905   35  21        Doherty              Sean    USA          1070.3     566.7
## 4906   36  42           Rees             Roman    GER          1058.5     552.3
## 4907   37  86      Bormolini            Thomas    ITA          1052.2     552.0
## 4908   38  95        Loginov         Alexander    RUS          1071.3     564.6
## 4909   39  39          Pryma             Artem    UKR          1067.2     535.5
## 4910   40   5       Windisch           Dominik    ITA          1077.8     533.8
## 4911   40  89         Claude            Fabien    FRA          1069.3     520.3
## 4912   42  35        Babikov             Anton    RUS          1072.7     540.8
## 4913   43  65         Dolder             Mario    SUI          1051.1     553.6
## 4914   44  20         Bailey            Lowell    USA          1082.4     580.7
## 4915   45  92       Darozhka        Aliaksandr    BLR          1068.2     549.4
## 4916   46  16    Bjoerndalen         Ole Einar    NOR          1069.9     526.7
## 4917   47  74       Fourcade             Simon    FRA          1080.4     548.3
## 4918   48  17         Lesser              Erik    GER          1089.5     547.8
## 4919   49  69        Nawrath           Philipp    GER          1083.6     528.8
## 4920   50  62          Trsan               Rok    SLO          1085.5     539.9
## 4921   51  47        Abasheu           Dzmitry    BLR          1084.1     568.2
## 4922   52  85         Soukup          Jaroslav    CZE          1078.5     560.3
## 4923   53  56   Christiansen    Vetle Sjaastad    NOR          1082.4     550.3
## 4924   54  45     Samuelsson         Sebastian    SWE          1104.6     572.7
## 4925   55   7        Lapshin           Timofei    KOR          1073.6     549.0
## 4926   56  53       Vaclavik              Adam    CZE          1107.9     548.1
## 4927   57  79        Sinapov             Anton    BUL          1106.8     572.7
## 4928   58  33          Iliev          Vladimir    BUL          1087.2     556.6
## 4929   59  72          Kazar             Matej    SVK          1099.5     552.7
## 4930   60  88     Gerdzhikov           Dimitar    BUL          1103.0     571.0
## 4931   61  26            Gow         Christian    CAN          1071.6     553.0
## 4932   61  87     Mesotitsch            Daniel    AUT          1115.9     608.6
## 4933   63  66         Pantov             Anton    KAZ          1099.1     569.7
## 4934   64  10     Pidruchnyi            Dmytro    UKR          1082.3     548.8
## 4935   65  57          Dixon             Scott    GBR          1092.0     553.6
## 4936   66  76      Tachizaki            Mikito    JPN          1108.3     545.7
## 4937   67  13        Hasilla             Tomas    SVK          1094.1     559.6
## 4938   68  83        Varabei            Maksim    BLR          1114.2     566.7
## 4939   69  64        Femling             Peppe    SWE          1105.7     558.3
## 4940   70 103         Jaeger            Martin    SUI          1133.7     577.8
## 4941   71  59     Hiidensalo              Olli    FIN          1134.4     551.2
## 4942   72  98         Zahkna              Rene    EST          1088.3     554.9
## 4943   73  84       Kobonoki           Tsukasa    JPN          1117.0     542.4
## 4944   74 102          Nelin            Jesper    SWE          1134.1     543.8
## 4945   75  75     Podkorytov          Vassiliy    KAZ          1114.2     570.9
## 4946   76  78          Guzik          Grzegorz    POL          1112.9     548.4
## 4947   77  44        Otcenas            Martin    SVK          1123.4     540.9
## 4948   78  11         Roesch           Michael    BEL          1098.6     591.8
## 4949   79  34           Faur             Remus    ROU          1113.3     594.6
## 4950   80  71       Montello          Giuseppe    ITA          1129.0     555.9
## 4951   81  61        Lessing            Roland    EST          1130.4     587.2
## 4952   82   6        Gronman            Tuomas    FIN          1119.7     540.7
## 4953   83  58       Skjelvik        Kristoffer    NOR          1099.0     559.5
## 4954   84  31       Kaukenas             Tomas    LTU          1127.9     577.5
## 4955   85  40          Green           Brendan    CAN          1120.8     564.9
## 4956   86  54    Malinovskii              Igor    RUS          1139.3     587.4
## 4957   87  30           Koiv             Kauri    EST          1131.9     619.8
## 4958   88  68       Siemakov         Volodymyr    UKR          1102.5     535.2
## 4959   89  82         Komatz             David    AUT          1146.9     529.0
## 4960   90  80       Szczurek            Lukasz    POL          1107.7     557.5
## 4961   91  81        Strolia          Vytautas    LTU          1126.2     599.1
## 4962   92  96 Nedza-Kubiniec           Andrzej    POL          1114.3     583.8
## 4963   93  91         Bricis            Ilmars    LAT          1128.1     560.2
## 4964   94 105          Braun             Maxim    KAZ          1131.0     576.7
## 4965   95  73            Gow             Scott    CAN          1126.6     588.3
## 4966   96  97          Oblak            Lenart    SLO          1122.9     559.5
## 4967   97  63           Lusa          Daumants    LAT          1135.1     569.6
## 4968   98  60       Schommer              Paul    USA          1158.5     576.7
## 4969   99  93        Zhyrnyi         Oleksandr    UKR          1180.1     589.5
## 4970  100  46       Nordgren              Leif    USA          1138.4     580.5
## 4971  101  90           Sima            Michal    SVK          1166.2     570.0
## 4972  102  99          Ranta            Jaakko    FIN          1166.0     598.6
## 4973  103 104        Angelis         Apostolos    GRE          1205.6     582.9
## 4974  104  67            Pop          Gheorghe    ROU          1263.3     627.5
## 4975  105  70     Krsmanovic             Dejan    SRB          1252.4     584.5
## 4976  106  77            Kim           Yonggyu    KOR          1248.9     621.6
## 4977  107 101     Dombrovski             Karol    LTU          1227.9     630.7
## 4978    1   1       Fourcade            Martin    FRA          1796.8     448.4
## 4979    2  22   Rastorgujevs           Andrejs    LAT          1827.0     447.1
## 4980    3  13           Eder             Simon    AUT          1821.6     452.2
## 4981    4   7       Svendsen        Emil Hegle    NOR          1845.9     474.4
## 4982    5   6        Peiffer              Arnd    GER          1852.4     478.5
## 4983    6  23       Slesingr            Michal    CZE          1846.4     490.9
## 4984    7  16        Beatrix    Jean Guillaume    FRA          1843.1     487.9
## 4985    8  19     Garanichev           Evgeniy    RUS          1851.5     473.4
## 4986    9  17         Krcmar            Michal    CZE          1849.6     470.4
## 4987   10  25        Babikov             Anton    RUS          1846.8     470.3
## 4988   11   2       Shipulin             Anton    RUS          1868.2     496.3
## 4989   12  27            Boe            Tarjei    NOR          1882.5     462.2
## 4990   13  11           Doll          Benedikt    GER          1881.2     500.6
## 4991   14  10         Lesser              Erik    GER          1870.8     498.4
## 4992   15   8         Bailey            Lowell    USA          1881.5     487.1
## 4993   16  15   Landertinger           Dominik    AUT          1889.7     464.3
## 4994   17   9    Bjoerndalen         Ole Einar    NOR          1848.6     476.5
## 4995   18  26     Lindstroem           Fredrik    SWE          1873.6     483.7
## 4996   19  14       Windisch           Dominik    ITA          1894.1     503.7
## 4997   20   5        Schempp             Simon    GER          1883.2     489.5
## 4998   21  21        Semenov            Sergii    UKR          1890.9     464.6
## 4999   22  20 Fillon Maillet           Quentin    FRA          1893.7     504.6
## 5000   23  30       Gjesbakk           Fredrik    NOR          1900.1     504.4
## 5001   24  12        Moravec            Ondrej    CZE          1933.9     505.0
## 5002   25  24      Desthieux             Simon    FRA          1934.3     496.7
## 5003   26   4       Eberhard            Julian    AUT          1967.7     514.4
## 5004   27  29           Anev          Krasimir    BUL          1966.6     519.7
## 5005   28  18       Tsvetkov             Maxim    RUS          1983.6     497.6
## 5006   29   3            Boe Johannes Thingnes    NOR          1988.0     559.5
## 5007   30  28          Hofer             Lukas    ITA          2014.7     522.9
## 5008    1   3       Shipulin             Anton    RUS          1553.8     386.3
## 5009    2   2       Fourcade            Martin    FRA          1575.2     410.2
## 5010    3   1            Boe Johannes Thingnes    NOR          1574.9     410.4
## 5011    4  15     Lindstroem           Fredrik    SWE          1590.6     388.4
## 5012    5  21          Hofer             Lukas    ITA          1622.7     402.6
## 5013    6  10       Eberhard            Julian    AUT          1620.5     403.7
## 5014    7  12           Eder             Simon    AUT          1619.7     401.9
## 5015    8   7        Moravec            Ondrej    CZE          1612.8     417.8
## 5016    9   8     Garanichev           Evgeniy    RUS          1618.5     405.3
## 5017   10  23   Rastorgujevs           Andrejs    LAT          1638.0     405.2
## 5018   11  24        Schempp             Simon    GER          1627.4     401.3
## 5019   12   4   Landertinger           Dominik    AUT          1650.5     393.3
## 5020   13  28         Krcmar            Michal    CZE          1651.3     392.9
## 5021   14   6            Boe            Tarjei    NOR          1648.8     425.0
## 5022   15  40       Windisch           Dominik    ITA          1666.2     388.4
## 5023   16  20       Svendsen        Emil Hegle    NOR          1659.7     407.1
## 5024   17   5        Semenov            Sergii    UKR          1660.1     416.6
## 5025   18  11           Doll          Benedikt    GER          1675.5     413.2
## 5026   19  30         Volkov            Alexey    RUS          1678.5     398.2
## 5027   20  25       Gjesbakk           Fredrik    NOR          1699.2     393.7
## 5028   21  39          Pryma             Artem    UKR          1693.5     390.0
## 5029   22  18           Anev          Krasimir    BUL          1696.5     413.4
## 5030   23  44         Bailey            Lowell    USA          1710.5     388.0
## 5031   24  42        Babikov             Anton    RUS          1690.1     435.8
## 5032   25  33    L'Abee-Lund            Henrik    NOR          1719.1     428.0
## 5033   26  14        Peiffer              Arnd    GER          1714.2     437.8
## 5034   27  16 Fillon Maillet           Quentin    FRA          1712.7     413.9
## 5035   28  48         Lesser              Erik    GER          1713.2     431.6
## 5036   29  58          Iliev          Vladimir    BUL          1717.2     387.2
## 5037   30  53   Christiansen    Vetle Sjaastad    NOR          1718.7     383.9
## 5038   31  27          Weger          Benjamin    SUI          1716.0     414.2
## 5039   32  29       Wiestner           Serafin    SUI          1733.4     415.1
## 5040   33  32         Waeger            Lorenz    AUT          1720.3     421.5
## 5041   34  13       Slesingr            Michal    CZE          1735.6     453.8
## 5042   35  47       Fourcade             Simon    FRA          1742.2     401.1
## 5043   36  38        Loginov         Alexander    RUS          1739.3     401.4
## 5044   37  55        Lapshin           Timofei    KOR          1718.6     413.5
## 5045   38  17          Bauer            Klemen    SLO          1742.1     440.8
## 5046   39  54     Samuelsson         Sebastian    SWE          1749.7     420.2
## 5047   40  19        Beatrix    Jean Guillaume    FRA          1741.5     460.8
## 5048   41  57        Sinapov             Anton    BUL          1770.7     439.0
## 5049   42  43         Dolder             Mario    SUI          1773.5     442.5
## 5050   43  37      Bormolini            Thomas    ITA          1756.0     408.9
## 5051   44  52         Soukup          Jaroslav    CZE          1764.8     447.2
## 5052   45  56       Vaclavik              Adam    CZE          1786.0     419.8
## 5053   46  35        Doherty              Sean    USA          1792.0     419.6
## 5054   47  22    Bocharnikov            Sergey    BLR          1802.9     438.2
## 5055   48  36           Rees             Roman    GER          1785.8     432.6
## 5056   49  51        Abasheu           Dzmitry    BLR          1814.2     420.6
## 5057   50  45       Darozhka        Aliaksandr    BLR          1808.8     410.7
## 5058   51  31        Eliseev            Matvey    RUS          1805.8     440.3
## 5059   52  34         Dovzan              Miha    SLO          1824.5     413.9
## 5060   53  41         Claude            Fabien    FRA          1848.0     446.8
## 5061   54  50          Trsan               Rok    SLO          1844.6     410.5
## 5062   55  49        Nawrath           Philipp    GER          1870.2     464.7
## 5063   56  59          Kazar             Matej    SVK          1893.7     451.1
## 5064    1  30       Fourcade            Martin    FRA           965.2     479.8
## 5065    2  21            Boe Johannes Thingnes    NOR           964.7     486.4
## 5066    3  29       Shipulin             Anton    RUS           978.8     486.2
## 5067    4  18       Svendsen        Emil Hegle    NOR           983.5     491.5
## 5068    5  88 Fillon Maillet           Quentin    FRA           976.2     481.9
## 5069    6  38        Schempp             Simon    GER           986.0     490.1
## 5070    7   9    Bjoerndalen         Ole Einar    NOR           976.1     487.5
## 5071    8   3         Lesser              Erik    GER           982.6     490.7
## 5072    9  35         Krcmar            Michal    CZE           990.8     495.3
## 5073   10  41        Eliseev            Matvey    RUS           995.0     481.4
## 5074   11  31           Eder             Simon    AUT           992.8     506.0
## 5075   12   8          Bauer            Klemen    SLO          1003.9     503.4
## 5076   13  28       Tsvetkov             Maxim    RUS          1005.5     501.2
## 5077   14  47     Mesotitsch            Daniel    AUT          1012.6     510.6
## 5078   15  33       Slesingr            Michal    CZE          1019.2     522.0
## 5079   16  11         Roesch           Michael    BEL          1018.5     499.6
## 5080   17  42       Wiestner           Serafin    SUI          1015.7     520.0
## 5081   18  15         Bailey            Lowell    USA          1008.6     502.8
## 5082   19  14        Peiffer              Arnd    GER          1022.4     498.3
## 5083   20  17      Desthieux             Simon    FRA          1028.3     503.2
## 5084   21   2           Doll          Benedikt    GER          1037.8     551.7
## 5085   21  49        Babikov             Anton    RUS          1007.0     507.2
## 5086   23  70            Gow             Scott    CAN          1018.8     513.3
## 5087   24   4          Weger          Benjamin    SUI          1020.4     518.9
## 5088   25  45        Semenov            Sergii    UKR          1007.4     513.0
## 5089   26  27           Anev          Krasimir    BUL          1005.2     502.1
## 5090   27  39        Beatrix    Jean Guillaume    FRA          1034.5     515.1
## 5091   28  68         Dolder             Mario    SUI          1021.5     531.1
## 5092   29  19       Fourcade             Simon    FRA          1020.2     494.5
## 5093   30  48     Samuelsson         Sebastian    SWE          1023.2     526.3
## 5094   31  10        Moravec            Ondrej    CZE          1032.3     503.3
## 5095   32  36      Birkeland        Lars Helge    NOR          1039.3     515.3
## 5096   33 102            Gow         Christian    CAN          1015.9     508.2
## 5097   34   7       Puchianu            Cornel    ROU          1036.7     532.3
## 5098   35  13        Hasilla             Tomas    SVK          1024.9     511.3
## 5099   35  25     Garanichev           Evgeniy    RUS          1027.5     522.0
## 5100   37  97         Dorfer          Matthias    GER          1007.9     514.2
## 5101   38  81   Bjoentegaard            Erlend    NOR          1039.4     547.9
## 5102   39  16          Pryma             Artem    UKR          1038.8     521.8
## 5103   39  76        Leitner             Felix    AUT          1040.9     497.5
## 5104   41  64      Yaliotnau             Raman    BLR          1046.4     545.8
## 5105   42  40          Hofer             Lukas    ITA          1049.2     509.7
## 5106   42  46        Otcenas            Martin    SVK          1042.5     519.0
## 5107   44  94    Bocharnikov            Sergey    BLR          1026.9     523.5
## 5108   45  60        Sinapov             Anton    BUL          1051.9     548.6
## 5109   46   6     Pidruchnyi            Dmytro    UKR          1061.1     538.7
## 5110   47  20       Eberhard            Julian    AUT          1065.3     507.3
## 5111   48  82        Lessing            Roland    EST          1032.6     523.5
## 5112   49  26   Landertinger           Dominik    AUT          1059.7     555.1
## 5113   50  58       Vaclavik              Adam    CZE          1045.7     500.7
## 5114   51  84        Krupcik             Tomas    CZE          1025.2     512.7
## 5115   52  23          Green           Brendan    CAN          1060.3     530.6
## 5116   53  12          Burke               Tim    USA          1066.1     522.4
## 5117   53  55     Dombrovski             Karol    LTU          1037.0     527.5
## 5118   55  65         Claude            Fabien    FRA          1057.9     562.5
## 5119   56  86        Finello            Jeremy    SUI          1043.7     508.8
## 5120   57  62           Graf           Florian    GER          1055.3     510.8
## 5121   58  79     Hiidensalo              Olli    FIN          1063.2     531.5
## 5122   59   5       Windisch           Dominik    ITA          1066.2     548.2
## 5123   60  63    Kilchytskyy           Vitaliy    UKR          1075.2     549.1
## 5124   61  44          Iliev          Vladimir    BUL          1077.3     541.0
## 5125   62  77         Shopin              Yury    RUS          1066.6     554.7
## 5126   63  53          Kazar             Matej    SVK          1074.8     535.9
## 5127   64  61      Savitskiy               Yan    KAZ          1038.9     537.7
## 5128   65  59        Currier           Russell    USA          1074.5     530.4
## 5129   66  72      Tachizaki            Mikito    JPN          1064.4     518.4
## 5130   67  37        Varabei            Maksim    BLR          1087.0     555.2
## 5131   68 104     Grossegger              Sven    AUT          1065.1     541.6
## 5132   69 103    L'Abee-Lund            Henrik    NOR          1081.6     550.8
## 5133   70  34   Rastorgujevs           Andrejs    LAT          1079.1     591.4
## 5134   71  56          Guzik          Grzegorz    POL          1070.1     536.7
## 5135   72  69          Braun             Maxim    KAZ          1056.2     543.9
## 5136   73  52         Zahkna              Rene    EST          1058.2     530.1
## 5137   74  74         Bricis            Ilmars    LAT          1083.4     561.2
## 5138   75  91       Montello          Giuseppe    ITA          1067.8     526.1
## 5139   76  24          Nelin            Jesper    SWE          1074.2     528.8
## 5140   77  71           Faur             Remus    ROU          1073.9     556.7
## 5141   78  67       Crnkovic          Kresimir    CRO          1106.9     566.5
## 5142   79  96     Podkorytov          Vassiliy    KAZ          1087.2     545.4
## 5143   80  54         Davies              Macx    CAN          1095.1     585.6
## 5144   81 101        Zhyrnyi         Oleksandr    UKR          1093.2     562.4
## 5145   82  57      Bormolini            Thomas    ITA          1082.6     531.1
## 5146   82  73       Kaukenas             Tomas    LTU          1086.7     550.3
## 5147   84  50      Stenersen          Torstein    SWE          1077.9     547.9
## 5148   85  87     Gerdzhikov           Dimitar    BUL          1081.8     530.2
## 5149   86  98           Sima            Michal    SVK          1081.2     558.7
## 5150   87  66          Janik           Mateusz    POL          1080.6     557.6
## 5151   88  83         Dovzan              Miha    SLO          1098.3     529.6
## 5152   89  32       Chepelin          Vladimir    BLR          1096.1     573.8
## 5153   90  78          Trsan               Rok    SLO          1102.2     538.9
## 5154   91  92       Kobonoki           Tsukasa    JPN          1094.9     538.9
## 5155   92  75          Dixon             Scott    GBR          1091.9     539.5
## 5156   93 100       Szczurek            Lukasz    POL          1130.0     556.1
## 5157   94  85        Strolia          Vytautas    LTU          1108.4     601.7
## 5158   95  99           Buta            George    ROU          1106.8     533.5
## 5159   96  22        Gronman            Tuomas    FIN          1117.2     527.6
## 5160   97   1           Koiv             Kauri    EST          1133.8     576.0
## 5161   98  80            Kim           Jongmin    KOR          1115.8     567.1
## 5162   99  51        Femling             Peppe    SWE          1096.0     543.6
## 5163  100  93        Vitenko         Vladislav    KAZ          1129.8     581.9
## 5164  101  95            Lee             Inbok    KOR          1141.2     585.4
## 5165  102  43       Drinovec             Mitja    SLO          1126.5     588.7
## 5166  103  90        Huhtala             Teemu    FIN          1142.8     563.1
## 5167  104  89        Slotins           Roberts    LAT          1142.8     589.3
## 5168    1   1       Fourcade            Martin    FRA          1490.6     370.3
## 5169    2   4       Svendsen        Emil Hegle    NOR          1515.0     374.6
## 5170    3   3       Shipulin             Anton    RUS          1514.6     394.9
## 5171    4   2            Boe Johannes Thingnes    NOR          1550.9     411.1
## 5172    5   6        Schempp             Simon    GER          1558.2     375.1
## 5173    6  16         Roesch           Michael    BEL          1573.8     379.4
## 5174    7  10        Eliseev            Matvey    RUS          1595.9     413.1
## 5175    8  13       Tsvetkov             Maxim    RUS          1601.4     410.2
## 5176    9   7    Bjoerndalen         Ole Einar    NOR          1609.6     378.4
## 5177   10   9         Krcmar            Michal    CZE          1610.5     386.6
## 5178   11   8         Lesser              Erik    GER          1595.4     413.2
## 5179   12  19        Peiffer              Arnd    GER          1607.4     384.7
## 5180   13  32      Birkeland        Lars Helge    NOR          1622.9     378.2
## 5181   14  31        Moravec            Ondrej    CZE          1626.1     373.5
## 5182   15  20      Desthieux             Simon    FRA          1632.7     409.6
## 5183   16  11           Eder             Simon    AUT          1628.9     400.9
## 5184   17  24          Weger          Benjamin    SUI          1635.4     384.4
## 5185   18  18         Bailey            Lowell    USA          1617.3     388.5
## 5186   19  15       Slesingr            Michal    CZE          1633.9     431.2
## 5187   20   5 Fillon Maillet           Quentin    FRA          1633.4     423.7
## 5188   21  47       Eberhard            Julian    AUT          1647.3     395.2
## 5189   22  21           Doll          Benedikt    GER          1655.9     433.6
## 5190   23  39          Pryma             Artem    UKR          1648.2     374.8
## 5191   24  25        Semenov            Sergii    UKR          1641.9     416.4
## 5192   25  26           Anev          Krasimir    BUL          1652.6     406.0
## 5193   26  36     Garanichev           Evgeniy    RUS          1649.5     383.5
## 5194   27  49   Landertinger           Dominik    AUT          1668.1     395.6
## 5195   28  42          Hofer             Lukas    ITA          1674.1     393.8
## 5196   29  59       Windisch           Dominik    ITA          1673.3     382.4
## 5197   30  46     Pidruchnyi            Dmytro    UKR          1664.0     408.4
## 5198   31  33            Gow         Christian    CAN          1656.7     388.1
## 5199   32  38   Bjoentegaard            Erlend    NOR          1689.8     416.9
## 5200   33  28         Dolder             Mario    SUI          1682.0     431.1
## 5201   34  22        Babikov             Anton    RUS          1689.3     420.1
## 5202   35  30     Samuelsson         Sebastian    SWE          1676.9     403.0
## 5203   36  37         Dorfer          Matthias    GER          1679.5     409.5
## 5204   37  35        Hasilla             Tomas    SVK          1674.1     404.7
## 5205   38  51        Krupcik             Tomas    CZE          1676.1     418.6
## 5206   39  27        Beatrix    Jean Guillaume    FRA          1709.2     394.3
## 5207   40  57           Graf           Florian    GER          1713.0     389.9
## 5208   41  12          Bauer            Klemen    SLO          1714.7     418.2
## 5209   42  53          Burke               Tim    USA          1745.8     455.3
## 5210   43  41      Yaliotnau             Raman    BLR          1757.3     391.4
## 5211   44  44    Bocharnikov            Sergey    BLR          1757.6     395.0
## 5212   45  17       Wiestner           Serafin    SUI          1735.0     397.4
## 5213   46  14     Mesotitsch            Daniel    AUT          1743.1     449.9
## 5214   47  43        Otcenas            Martin    SVK          1755.8     425.9
## 5215   48  23            Gow             Scott    CAN          1751.6     449.2
## 5216   49  48        Lessing            Roland    EST          1758.1     406.5
## 5217   50  50       Vaclavik              Adam    CZE          1771.1     396.0
## 5218   51  56        Finello            Jeremy    SUI          1772.5     394.6
## 5219   52  45        Sinapov             Anton    BUL          1753.5     424.2
## 5220   53  54     Dombrovski             Karol    LTU          1766.9     422.8
## 5221   54  58     Hiidensalo              Olli    FIN          1791.9     438.1
## 5222   55  40        Leitner             Felix    AUT          1790.0     436.9
## 5223   56  29       Fourcade             Simon    FRA          1722.9     423.5
## 5224   57  52          Green           Brendan    CAN          1801.6     419.8
## 5225   58  34       Puchianu            Cornel    ROU          1811.1     482.1
## 5226    1  90       Eberhard            Julian    AUT           970.2     500.0
## 5227    2  81         Bailey            Lowell    USA           990.8     510.9
## 5228    3  76       Fourcade            Martin    FRA          1023.9     528.2
## 5229    4  26   Landertinger           Dominik    AUT          1014.4     519.3
## 5230    5  72         Lesser              Erik    GER          1014.3     531.1
## 5231    6  24       Windisch           Dominik    ITA          1022.5     505.0
## 5232    7  70       Wiestner           Serafin    SUI          1026.4     518.9
## 5233    8  63           Eder             Simon    AUT          1033.6     562.8
## 5234    9  89     Garanichev           Evgeniy    RUS          1023.4     548.2
## 5235   10  59          Pryma             Artem    UKR          1006.4     527.4
## 5236   11  34      Desthieux             Simon    FRA          1028.2     539.8
## 5237   12   6          Hofer             Lukas    ITA          1040.8     537.9
## 5238   13  46           Rees             Roman    GER          1024.2     546.0
## 5239   14  37       Tsvetkov             Maxim    RUS          1023.9     528.7
## 5240   15  33   Rastorgujevs           Andrejs    LAT          1043.9     536.6
## 5241   16  41     Pidruchnyi            Dmytro    UKR          1037.5     530.7
## 5242   17   8        Beatrix    Jean Guillaume    FRA          1042.1     550.6
## 5243   18  11   Christiansen    Vetle Sjaastad    NOR          1041.7     543.1
## 5244   19   9        Krupcik             Tomas    CZE          1027.9     537.1
## 5245   20  27           Doll          Benedikt    GER          1053.3     528.7
## 5246   21  13         Waeger            Lorenz    AUT          1029.4     533.7
## 5247   21  56       Fourcade             Simon    FRA          1035.9     538.5
## 5248   23  39       Shipulin             Anton    RUS          1044.3     555.3
## 5249   24  73       Slesingr            Michal    CZE          1039.5     526.9
## 5250   25  40        Semenov            Sergii    UKR          1046.5     544.3
## 5251   26  62    Bjoerndalen         Ole Einar    NOR          1058.5     554.5
## 5252   27  22            Gow             Scott    CAN          1052.8     541.2
## 5253   28  31          Green           Brendan    CAN          1051.4     552.2
## 5254   29  21           Graf           Florian    GER          1052.7     538.9
## 5255   30  47    Bocharnikov            Sergey    BLR          1044.4     534.6
## 5256   31  32        Peiffer              Arnd    GER          1068.2     584.7
## 5257   32  10 Fillon Maillet           Quentin    FRA          1071.0     532.3
## 5258   33  79        Varabei            Maksim    BLR          1053.9     559.7
## 5259   34  36       Chepelin          Vladimir    BLR          1066.5     562.5
## 5260   35  80        Finello            Jeremy    SUI          1056.5     571.7
## 5261   36  69       Montello          Giuseppe    ITA          1070.0     564.2
## 5262   37  29       Nordgren              Leif    USA          1067.3     545.7
## 5263   38  67    L'Abee-Lund            Henrik    NOR          1083.0     593.6
## 5264   39  92     Gerdzhikov           Dimitar    BUL          1055.5     545.7
## 5265   40  23  Gjermundshaug            Vegard    NOR          1065.3     548.7
## 5266   41  94        Babikov             Anton    RUS          1054.5     561.6
## 5267   42  16          Iliev          Vladimir    BUL          1087.4     577.2
## 5268   43  30       Vaclavik              Adam    CZE          1078.1     539.2
## 5269   43  42           Anev          Krasimir    BUL          1063.7     546.0
## 5270   45   3          Weger          Benjamin    SUI          1068.3     528.1
## 5271   46  87         Claude            Fabien    FRA          1070.2     540.6
## 5272   47  35      Savitskiy               Yan    KAZ          1071.0     570.7
## 5273   48   2          Bauer            Klemen    SLO          1080.0     567.7
## 5274   49  49         Krcmar            Michal    CZE          1069.1     548.6
## 5275   50  14     Samuelsson         Sebastian    SWE          1086.7     569.1
## 5276   50  20         Dolder             Mario    SUI          1086.2     597.4
## 5277   52   5         Shopin              Yury    RUS          1067.2     558.4
## 5278   53  43          Guzik          Grzegorz    POL          1077.3     537.9
## 5279   54   4       Siemakov         Volodymyr    UKR          1079.4     577.5
## 5280   55  50     Podkorytov          Vassiliy    KAZ          1077.9     565.1
## 5281   56  12            Gow         Christian    CAN          1080.3     534.1
## 5282   57  74        Hasilla             Tomas    SVK          1083.3     567.3
## 5283   58  86        Zhyrnyi         Oleksandr    UKR          1088.6     550.9
## 5284   59  97          Hoerl            Fabian    AUT          1077.0     578.6
## 5285   60  48        Sinapov             Anton    BUL          1110.6     546.7
## 5286   61  84       Gjesbakk           Fredrik    NOR          1093.3     590.9
## 5287   62  66       Szczurek            Lukasz    POL          1089.9     550.7
## 5288   63  19           Faur             Remus    ROU          1095.4     552.7
## 5289   64  45   Bjoentegaard            Erlend    NOR          1106.4     573.8
## 5290   65  75       Puchianu            Cornel    ROU          1097.7     571.9
## 5291   66  58         Bricis            Ilmars    LAT          1089.5     582.2
## 5292   67  88         Orpana              Sami    FIN          1085.2     577.5
## 5293   68  18        Otcenas            Martin    SVK          1104.0     593.8
## 5294   69  95         Soukup          Jaroslav    CZE          1093.0     554.9
## 5295   70  55      Tachizaki            Mikito    JPN          1101.8     591.9
## 5296   71  53     Dombrovski             Karol    LTU          1099.5     572.6
## 5297   72  52     Grossegger              Sven    AUT          1098.8     540.9
## 5298   73  82      Bormolini            Thomas    ITA          1111.1     554.6
## 5299   74  44         Dovzan              Miha    SLO          1108.5     584.9
## 5300   75  65         Pantov             Anton    KAZ          1114.5     545.8
## 5301   76  78           Lusa          Daumants    LAT          1093.7     575.5
## 5302   77  98        Strolia          Vytautas    LTU          1116.5     562.9
## 5303   78  15        Abasheu           Dzmitry    BLR          1121.6     581.4
## 5304   79  91      Stenersen          Torstein    SWE          1110.3     547.8
## 5305   80  93        Doherty              Sean    USA          1119.5     569.0
## 5306   81   7         Roesch           Michael    BEL          1112.0     590.9
## 5307   82  71         Zahkna              Rene    EST          1118.1     567.6
## 5308   83  25           Koiv             Kauri    EST          1106.5     593.1
## 5309   84  38        Femling             Peppe    SWE          1114.1     569.3
## 5310   85 103           Buta            George    ROU          1125.4     552.9
## 5311   86   1          Kazar             Matej    SVK          1142.9     587.5
## 5312   87 102            Kim           Jongmin    KOR          1095.7     574.9
## 5313   88  54          Smith            Nathan    CAN          1116.3     605.6
## 5314   89  17       Kaukenas             Tomas    LTU          1129.9     619.4
## 5315   90  85           Sima            Michal    SVK          1131.4     570.5
## 5316   91  96       Kobonoki           Tsukasa    JPN          1141.2     604.4
## 5317   92  28        Gronman            Tuomas    FIN          1140.0     565.6
## 5318   93  51  Loukkaanhuhta             Mikko    FIN          1156.4     585.8
## 5319   94  64            Kim           Yonggyu    KOR          1135.1     616.4
## 5320   95  77          Trsan               Rok    SLO          1160.5     566.7
## 5321   96 100        Remmelg            Martin    EST          1141.1     608.0
## 5322   97  99        Vitenko         Vladislav    KAZ          1170.6     570.6
## 5323   98 101         Davies              Macx    CAN          1187.1     592.0
## 5324   99  60          Oblak            Lenart    SLO          1168.2     624.7
## 5325   99  68    Makhambetov             Timur    RUS          1181.8     580.0
## 5326  101  61       Schommer              Paul    USA          1190.0     599.0
## 5327  102  83          Penar             Rafal    POL          1191.2     622.0
## 5328    1   3       Fourcade            Martin    FRA          1571.4     385.7
## 5329    2  23       Shipulin             Anton    RUS          1599.9     389.0
## 5330    3   1       Eberhard            Julian    AUT          1608.4     410.6
## 5331    4   8           Eder             Simon    AUT          1630.3     435.2
## 5332    5   9     Garanichev           Evgeniy    RUS          1635.2     394.3
## 5333    6  11      Desthieux             Simon    FRA          1640.5     393.6
## 5334    7   4   Landertinger           Dominik    AUT          1653.3     450.9
## 5335    8  20           Doll          Benedikt    GER          1659.6     410.5
## 5336    9   2         Bailey            Lowell    USA          1643.0     401.7
## 5337   10  12          Hofer             Lukas    ITA          1658.1     437.7
## 5338   11  17        Beatrix    Jean Guillaume    FRA          1656.8     401.0
## 5339   12  18   Christiansen    Vetle Sjaastad    NOR          1660.8     410.1
## 5340   13   5         Lesser              Erik    GER          1660.2     413.8
## 5341   14  15   Rastorgujevs           Andrejs    LAT          1680.2     398.2
## 5342   15  41        Babikov             Anton    RUS          1677.3     396.0
## 5343   16  22       Fourcade             Simon    FRA          1675.5     441.8
## 5344   17  38    L'Abee-Lund            Henrik    NOR          1687.5     406.1
## 5345   18  30    Bocharnikov            Sergey    BLR          1689.3     411.7
## 5346   19  26    Bjoerndalen         Ole Einar    NOR          1690.8     439.8
## 5347   20  14       Tsvetkov             Maxim    RUS          1684.7     404.2
## 5348   21  31        Peiffer              Arnd    GER          1702.5     445.0
## 5349   22   6       Windisch           Dominik    ITA          1698.8     402.8
## 5350   23  13           Rees             Roman    GER          1701.2     421.9
## 5351   24  24       Slesingr            Michal    CZE          1699.4     425.0
## 5352   25  32 Fillon Maillet           Quentin    FRA          1697.8     396.0
## 5353   26   7       Wiestner           Serafin    SUI          1700.7     421.8
## 5354   27  19        Krupcik             Tomas    CZE          1707.4     426.5
## 5355   28  37       Nordgren              Leif    USA          1705.9     426.5
## 5356   29  29           Graf           Florian    GER          1722.1     442.4
## 5357   30  16     Pidruchnyi            Dmytro    UKR          1715.7     444.3
## 5358   31  35        Finello            Jeremy    SUI          1740.5     410.7
## 5359   32  56            Gow         Christian    CAN          1748.0     417.4
## 5360   33  10          Pryma             Artem    UKR          1749.8     436.6
## 5361   34  21         Waeger            Lorenz    AUT          1766.8     435.6
## 5362   35  44           Anev          Krasimir    BUL          1770.0     409.5
## 5363   36  34       Chepelin          Vladimir    BLR          1781.8     450.1
## 5364   37  25        Semenov            Sergii    UKR          1772.5     476.0
## 5365   38  48          Bauer            Klemen    SLO          1785.1     436.4
## 5366   39  60        Sinapov             Anton    BUL          1782.7     432.0
## 5367   40  40  Gjermundshaug            Vegard    NOR          1788.6     454.8
## 5368   41  47      Savitskiy               Yan    KAZ          1782.2     464.4
## 5369   42  52         Shopin              Yury    RUS          1795.4     414.2
## 5370   43  27            Gow             Scott    CAN          1802.3     482.0
## 5371   44  28          Green           Brendan    CAN          1796.2     426.7
## 5372   45  59          Hoerl            Fabian    AUT          1808.7     419.8
## 5373   46  36       Montello          Giuseppe    ITA          1820.9     439.4
## 5374   47  46         Claude            Fabien    FRA          1829.4     464.7
## 5375   48  45          Weger          Benjamin    SUI          1812.9     420.5
## 5376   49  54       Siemakov         Volodymyr    UKR          1818.0     467.6
## 5377   50  58        Zhyrnyi         Oleksandr    UKR          1829.1     467.0
## 5378   51  49         Krcmar            Michal    CZE          1823.1     438.1
## 5379   52  39     Gerdzhikov           Dimitar    BUL          1823.6     440.0
## 5380   53  50     Samuelsson         Sebastian    SWE          1854.1     407.6
## 5381   54  33        Varabei            Maksim    BLR          1851.4     443.9
## 5382   55  57        Hasilla             Tomas    SVK          1857.6     450.5
## 5383   56  51         Dolder             Mario    SUI          1843.3     495.9
## 5384   57  53          Guzik          Grzegorz    POL          1880.2     450.4
## 5385   58  43       Vaclavik              Adam    CZE          1904.8     458.6
## 5386    1  60       Fourcade            Martin    FRA           943.9     473.6
## 5387    2  27       Eberhard            Julian    AUT           957.1     480.5
## 5388    3  25       Svendsen        Emil Hegle    NOR           969.3     482.8
## 5389    4  81        Peiffer              Arnd    GER           973.3     489.8
## 5390    5  66        Schempp             Simon    GER           979.8     502.6
## 5391    6  30       Malyshko            Dmitry    RUS           973.1     485.3
## 5392    7  23     Pidruchnyi            Dmytro    UKR           979.0     490.3
## 5393    8  13    Bjoerndalen         Ole Einar    NOR           978.1     494.8
## 5394    9  26   Landertinger           Dominik    AUT           996.2     512.1
## 5395   10  10      Birkeland        Lars Helge    NOR           981.2     496.0
## 5396   11  22          Weger          Benjamin    SUI           983.2     490.8
## 5397   12  21          Burke               Tim    USA           998.4     510.7
## 5398   13  72     Lindstroem           Fredrik    SWE           991.3     501.4
## 5399   14  38          Bauer            Klemen    SLO           993.8     506.8
## 5400   15  50     Mesotitsch            Daniel    AUT           987.2     501.0
## 5401   16  47         Bischl          Matthias    GER           993.1     501.0
## 5402   17  48       Chepelin          Vladimir    BLR           996.3     518.6
## 5403   18  80         Bailey            Lowell    USA           996.8     509.7
## 5404   19  90     Garanichev           Evgeniy    RUS           996.8     508.4
## 5405   20  29           Doll          Benedikt    GER          1019.6     540.1
## 5406   21 100   Bjoentegaard            Erlend    NOR          1013.3     518.8
## 5407   22  33   Rastorgujevs           Andrejs    LAT          1003.9     506.0
## 5408   23  14        Babikov             Anton    RUS          1009.3     493.4
## 5409   23  69       Shipulin             Anton    RUS          1013.9     501.6
## 5410   25  78         Dolder             Mario    SUI          1008.0     517.9
## 5411   26  75 Fillon Maillet           Quentin    FRA          1002.8     502.9
## 5412   27  31         Lesser              Erik    GER          1001.7     496.4
## 5413   28  15          Iliev          Vladimir    BUL          1013.8     509.4
## 5414   29  71         Krcmar            Michal    CZE          1009.7     515.1
## 5415   30  51           Anev          Krasimir    BUL          1004.2     516.6
## 5416   31  70       Tsvetkov             Maxim    RUS          1010.4     516.8
## 5417   32  57       Kaukenas             Tomas    LTU          1005.0     506.0
## 5418   33  65        Beatrix    Jean Guillaume    FRA          1020.3     528.7
## 5419   34  28         Roesch           Michael    BEL          1002.6     494.0
## 5420   35  45          Pryma             Artem    UKR          1022.4     520.6
## 5421   36  35     Samuelsson         Sebastian    SWE          1018.0     507.6
## 5422   37  16            Boe Johannes Thingnes    NOR          1016.3     501.8
## 5423   38  93     Willeitner           Michael    GER          1024.1     508.7
## 5424   39  88       Vaclavik              Adam    CZE          1025.7     496.7
## 5425   40  79        Doherty              Sean    USA          1013.8     498.8
## 5426   41   4       Wiestner           Serafin    SUI          1036.5     529.3
## 5427   42  34            Gow             Scott    CAN          1022.1     506.9
## 5428   43  52       Windisch           Dominik    ITA          1029.1     515.8
## 5429   44  42         Bricis            Ilmars    LAT          1013.3     509.9
## 5430   45  91      Stenersen          Torstein    SWE          1014.8     526.0
## 5431   46  24       Fourcade             Simon    FRA          1020.8     522.2
## 5432   47  92    Kilchytskyy           Vitaliy    UKR          1017.6     519.9
## 5433   48  11        Semenov            Sergii    UKR          1038.7     531.2
## 5434   49 105         Claude            Fabien    FRA          1026.7     513.9
## 5435   50  44         Komatz             David    AUT          1032.4     503.4
## 5436   51  20        Gronman            Tuomas    FIN          1036.7     502.6
## 5437   52  56        Moravec            Ondrej    CZE          1055.5     510.7
## 5438   53   9          Nelin            Jesper    SWE          1055.9     484.5
## 5439   53  64    L'Abee-Lund            Henrik    NOR          1058.6     552.4
## 5440   55  19          Hofer             Lukas    ITA          1057.4     536.2
## 5441   56  43            Fak             Jakov    SLO          1032.0     524.9
## 5442   57  36    Bocharnikov            Sergey    BLR          1051.4     547.5
## 5443   58  58      Savitskiy               Yan    KAZ          1028.5     523.9
## 5444   59  53        Eliseev            Matvey    RUS          1050.2     489.2
## 5445   60 107      Bormolini            Thomas    ITA          1027.9     530.5
## 5446   61   5       Siemakov         Volodymyr    UKR          1055.2     517.7
## 5447   62  74           Faur             Remus    ROU          1043.3     536.6
## 5448   63  96     Grossegger              Sven    AUT          1039.9     538.9
## 5449   64  76          Green           Brendan    CAN          1054.3     527.4
## 5450   65  77       Slesingr            Michal    CZE          1060.1     503.9
## 5451   66  17          Guzik          Grzegorz    POL          1048.7     532.1
## 5452   67  59          Kazar             Matej    SVK          1054.3     547.4
## 5453   68  82          Braun             Maxim    KAZ          1038.2     531.0
## 5454   69  61         Zahkna              Rene    EST          1052.0     518.3
## 5455   70  18         Soukup          Jaroslav    CZE          1064.2     515.3
## 5456   71  83       Nordgren              Leif    USA          1059.3     529.0
## 5457   72  95     Tambornino           Eligius    SUI          1073.6     550.5
## 5458   73   7      Yaliotnau             Raman    BLR          1086.3     592.0
## 5459   74  32       Puchianu            Cornel    ROU          1064.2     540.1
## 5460   75   1        Currier           Russell    USA          1087.5     547.5
## 5461   76   6        Leitner             Felix    AUT          1061.0     536.1
## 5462   77  99         Orpana              Sami    FIN          1067.1     563.7
## 5463   78  98         Dovzan              Miha    SLO          1067.9     536.1
## 5464   79  41       Montello          Giuseppe    ITA          1079.5     560.8
## 5465   80  55        Strolia          Vytautas    LTU          1099.1     532.7
## 5466   81  37       Crnkovic          Kresimir    CRO          1081.7     553.6
## 5467   82 101         Davies              Macx    CAN          1085.7     534.3
## 5468   83  85        Abasheu           Dzmitry    BLR          1092.9     529.4
## 5469   84  40     Hiidensalo              Olli    FIN          1093.5     579.2
## 5470   85  12        Otcenas            Martin    SVK          1098.8     554.1
## 5471   86   8        Sinapov             Anton    BUL          1105.8     530.7
## 5472   87  86     Podkorytov          Vassiliy    KAZ          1087.0     509.5
## 5473   88   2            Gow         Christian    CAN          1094.6     537.6
## 5474   89  84           Buta            George    ROU          1082.5     515.3
## 5475   90  39          Janik           Mateusz    POL          1080.1     571.0
## 5476   91   3        Hasilla             Tomas    SVK          1108.7     535.5
## 5477   92 102     Gerdzhikov           Dimitar    BUL          1101.4     594.5
## 5478   93  46         Ermits             Kalev    EST          1110.2     512.6
## 5479   94 106          Penar             Rafal    POL          1088.8     567.3
## 5480   95 103     Dombrovski             Karol    LTU          1097.9     581.0
## 5481   96  73       Kobonoki           Tsukasa    JPN          1128.9     576.5
## 5482   97  94           Lusa          Daumants    LAT          1102.1     576.6
## 5483   98  68         Pantov             Anton    KAZ          1141.8     554.3
## 5484   99  49            Lee             Inbok    KOR          1113.9     591.1
## 5485  100  97      Tachizaki            Mikito    JPN          1126.3     625.6
## 5486  101  62          Trsan               Rok    SLO          1142.1     611.9
## 5487  102  54         Hodzic              Edin    SRB          1101.2     584.4
## 5488  103  87           Sima            Michal    SVK          1116.1     576.5
## 5489  104 104            Kim           Jongmin    KOR          1126.3     579.8
## 5490  105  67          Dixon             Scott    GBR          1126.9     574.8
## 5491  106  89        Remmelg            Martin    EST          1156.4     572.1
## 5492  107  63        Angelis         Apostolos    GRE          1197.6     603.6
## 5493    1   1       Fourcade            Martin    FRA          1686.4     400.1
## 5494    2   3       Svendsen        Emil Hegle    NOR          1700.7     414.9
## 5495    3  29         Krcmar            Michal    CZE          1721.9     406.7
## 5496    4  24       Shipulin             Anton    RUS          1715.1     422.1
## 5497    5   4        Peiffer              Arnd    GER          1719.2     425.2
## 5498    6   9   Landertinger           Dominik    AUT          1734.1     407.0
## 5499    7   5        Schempp             Simon    GER          1741.9     446.4
## 5500    8  21   Bjoentegaard            Erlend    NOR          1742.5     401.4
## 5501    9  15     Mesotitsch            Daniel    AUT          1731.5     410.7
## 5502   10  22   Rastorgujevs           Andrejs    LAT          1740.3     401.6
## 5503   11  43       Windisch           Dominik    ITA          1750.2     421.0
## 5504   12  28          Iliev          Vladimir    BUL          1747.8     395.7
## 5505   13   2       Eberhard            Julian    AUT          1765.0     411.8
## 5506   14   6       Malyshko            Dmitry    RUS          1741.7     448.1
## 5507   15  37            Boe Johannes Thingnes    NOR          1759.7     400.3
## 5508   16  46       Fourcade             Simon    FRA          1765.2     400.3
## 5509   17  33        Beatrix    Jean Guillaume    FRA          1764.1     424.2
## 5510   18   7     Pidruchnyi            Dmytro    UKR          1759.3     397.9
## 5511   19  13     Lindstroem           Fredrik    SWE          1760.4     403.9
## 5512   20  11          Weger          Benjamin    SUI          1756.8     436.6
## 5513   21  54    L'Abee-Lund            Henrik    NOR          1770.5     402.7
## 5514   22  20           Doll          Benedikt    GER          1784.6     443.1
## 5515   23  27         Lesser              Erik    GER          1784.2     443.9
## 5516   24  12          Burke               Tim    USA          1786.0     423.8
## 5517   25  19     Garanichev           Evgeniy    RUS          1787.4     448.3
## 5518   26  18         Bailey            Lowell    USA          1772.4     434.2
## 5519   27  35          Pryma             Artem    UKR          1782.3     408.3
## 5520   28  25         Dolder             Mario    SUI          1785.6     441.8
## 5521   29  17       Chepelin          Vladimir    BLR          1790.9     408.3
## 5522   30  30           Anev          Krasimir    BUL          1789.1     432.2
## 5523   31  34         Roesch           Michael    BEL          1788.3     454.2
## 5524   32  26 Fillon Maillet           Quentin    FRA          1823.7     443.0
## 5525   33  49         Claude            Fabien    FRA          1829.2     452.4
## 5526   34   8    Bjoerndalen         Ole Einar    NOR          1822.6     440.5
## 5527   35  58      Savitskiy               Yan    KAZ          1824.1     419.9
## 5528   36  10      Birkeland        Lars Helge    NOR          1817.4     450.5
## 5529   37  52        Moravec            Ondrej    CZE          1846.9     433.3
## 5530   38  55          Hofer             Lukas    ITA          1873.8     417.4
## 5531   39  31       Tsvetkov             Maxim    RUS          1863.6     463.1
## 5532   40  39       Vaclavik              Adam    CZE          1864.2     420.6
## 5533   41  42            Gow             Scott    CAN          1859.6     445.5
## 5534   42  38     Willeitner           Michael    GER          1841.4     484.6
## 5535   43  40        Doherty              Sean    USA          1868.2     448.1
## 5536   44  50         Komatz             David    AUT          1878.0     427.3
## 5537   45  41       Wiestner           Serafin    SUI          1903.9     425.9
## 5538   46  48        Semenov            Sergii    UKR          1874.3     418.7
## 5539   47  57    Bocharnikov            Sergey    BLR          1920.0     455.4
## 5540   48  16         Bischl          Matthias    GER          1916.1     457.8
## 5541   49  36     Samuelsson         Sebastian    SWE          1939.0     490.7
## 5542   50  56            Fak             Jakov    SLO          1940.5     496.5
## 5543   51  53          Nelin            Jesper    SWE          1984.1     438.6
## 5544   52  60      Bormolini            Thomas    ITA          1982.2     450.7
## 5545   53  32       Kaukenas             Tomas    LTU          1981.9     450.0
## 5546   54  51        Gronman            Tuomas    FIN          2020.0     524.5
## 5547   55  44         Bricis            Ilmars    LAT          2043.5     496.5
## 5548    1  24            Boe Johannes Thingnes    NOR           931.7     467.0
## 5549    2  31       Fourcade            Martin    FRA           946.4     473.4
## 5550    3  88      Guigonnat           Antonin    FRA           959.5     475.4
## 5551    4  11        Schempp             Simon    GER           966.4     482.1
## 5552    5  29      Desthieux             Simon    FRA           968.1     476.3
## 5553    6  84       Shipulin             Anton    RUS           981.3     477.1
## 5554    7  87       Gjesbakk           Fredrik    NOR           966.6     484.6
## 5555    8  18        Lapshin           Timofei    KOR           968.1     485.8
## 5556    9  10       Windisch           Dominik    ITA           982.1     485.9
## 5557   10  40          Burke               Tim    USA           971.3     484.1
## 5558   11  12          Weger          Benjamin    SUI           978.3     487.3
## 5559   12  92           Doll          Benedikt    GER           995.6     514.8
## 5560   13  34            Fak             Jakov    SLO           992.9     488.0
## 5561   14  51         Ermits             Kalev    EST           982.8     489.4
## 5562   15  45        Babikov             Anton    RUS           977.9     487.3
## 5563   16  99            Gow             Scott    CAN           987.6     490.1
## 5564   17   7        Doherty              Sean    USA           989.0     493.4
## 5565   18  39        Loginov         Alexander    RUS          1004.8     476.5
## 5566   19  83     Garanichev           Evgeniy    RUS           997.3     506.7
## 5567   20   9        Eliseev            Matvey    RUS           996.0     505.5
## 5568   21  21      Birkeland        Lars Helge    NOR          1007.1     511.4
## 5569   22  15        Peiffer              Arnd    GER          1006.1     513.3
## 5570   23  28     Samuelsson         Sebastian    SWE          1008.2     510.7
## 5571   24  42   Rastorgujevs           Andrejs    LAT          1008.6     508.2
## 5572   25  46   Bjoentegaard            Erlend    NOR          1012.0     503.5
## 5573   26  38           Eder             Simon    AUT          1011.7     528.6
## 5574   27  59          Iliev          Vladimir    BUL          1008.4     513.4
## 5575   28  55       Eberhard            Tobias    AUT          1003.6     507.4
## 5576   29  69        Otcenas            Martin    SVK          1008.3     497.6
## 5577   30  50            Gow         Christian    CAN           994.8     497.0
## 5578   31  27        Seppala              Tero    FIN          1022.4     507.7
## 5579   32  72      Bormolini            Thomas    ITA           988.9     504.8
## 5580   33  90       Wiestner           Serafin    SUI          1014.1     496.0
## 5581   34  25         Krcmar            Michal    CZE          1022.0     494.2
## 5582   35  17         Bailey            Lowell    USA          1019.6     494.2
## 5583   36  60         Claude           Florent    BEL          1007.6     503.2
## 5584   37  33        Moravec            Ondrej    CZE          1023.0     486.9
## 5585   38  49          Kuehn          Johannes    GER          1031.4     515.9
## 5586   39  97        Gronman            Tuomas    FIN          1004.5     499.0
## 5587   40  47          Hofer             Lukas    ITA          1030.0     520.5
## 5588   41   4       Slesingr            Michal    CZE          1011.6     504.8
## 5589   42  26          Bauer            Klemen    SLO          1029.7     532.7
## 5590   43  66           Anev          Krasimir    BUL          1020.9     494.4
## 5591   44  22         Lesser              Erik    GER          1037.3     550.6
## 5592   45  65       Eberhard            Julian    AUT          1046.3     517.7
## 5593   46   3        Beatrix    Jean Guillaume    FRA          1033.6     538.0
## 5594   47  81        Krupcik             Tomas    CZE          1031.9     518.2
## 5595   48  16            Boe            Tarjei    NOR          1033.6     524.4
## 5596   49  23        Strolia          Vytautas    LTU          1020.2     525.2
## 5597   50  54          Kazar             Matej    SVK          1039.1     511.1
## 5598   50  76      Muiznieks            Oskars    LAT          1026.5     497.2
## 5599   52  95         Komatz             David    AUT          1040.2     505.7
## 5600   53 102        Sinapov             Anton    BUL          1034.9     512.5
## 5601   54  77        Finello            Jeremy    SUI          1031.0     537.0
## 5602   55   5         Dovzan              Miha    SLO          1035.2     505.9
## 5603   56  75       Nordgren              Leif    USA          1031.1     499.4
## 5604   57  56     Hiidensalo              Olli    FIN          1040.4     517.9
## 5605   58  14     Lindstroem           Fredrik    SWE          1042.0     544.9
## 5606   59   1        Nawrath           Philipp    GER          1032.2     525.3
## 5607   60  32       Tkalenko            Ruslan    UKR          1043.7     508.2
## 5608   61  19 Fillon Maillet           Quentin    FRA          1066.3     529.6
## 5609   62  41         Dolder             Mario    SUI          1052.8     512.0
## 5610   63  57          Nelin            Jesper    SWE          1052.9     515.0
## 5611   64 100         Bartko             Simon    SVK          1046.2     521.7
## 5612   65  71       Fourcade             Simon    FRA          1040.1     518.1
## 5613   66  63       Szczurek            Lukasz    POL          1055.9     536.8
## 5614   67  70       Kaukenas             Tomas    LTU          1049.3     535.9
## 5615   68  82           Sima            Michal    SVK          1056.9     526.2
## 5616   69  36      Tachizaki            Mikito    JPN          1048.0     538.1
## 5617   70  96           Lusa          Daumants    LAT          1043.9     535.6
## 5618   71  52        Abasheu           Dzmitry    BLR          1062.0     537.7
## 5619   72  44       Drinovec             Mitja    SLO          1048.4     524.5
## 5620   73  74        Yeremin             Roman    KAZ          1076.5     527.3
## 5621   74  61     Grossegger              Sven    AUT          1064.2     545.3
## 5622   75  13           Buta            George    ROU          1071.6     563.1
## 5623   76  58       Kobonoki           Tsukasa    JPN          1066.4     532.6
## 5624   77  89         Chenal           Thierry    ITA          1061.1     537.6
## 5625   78  79        Zhyrnyi         Oleksandr    UKR          1054.5     516.6
## 5626   79  62     Tyshchenko             Artem    UKR          1062.1     517.9
## 5627   80  20         Zahkna              Rene    EST          1076.0     553.4
## 5628   81 103           Faur             Remus    ROU          1064.7     554.9
## 5629   82  98    Khamitgatin             Timur    KAZ          1068.9     525.8
## 5630   83  48          Guzik          Grzegorz    POL          1083.9     527.0
## 5631   84  53       Vaclavik              Adam    CZE          1091.4     596.5
## 5632   85 106       Schommer              Paul    USA          1085.5     523.2
## 5633   86   8          Green           Brendan    CAN          1107.7     532.0
## 5634   87 105 Nedza-Kubiniec           Andrzej    POL          1080.7     530.5
## 5635   88  73          Dixon             Scott    GBR          1080.1     562.2
## 5636   89  86           Ivko            Maksym    UKR          1063.5     522.2
## 5637   90  93        Smolski             Anton    BLR          1105.5     547.3
## 5638   91  30          Smith            Nathan    CAN          1074.8     563.6
## 5639   92   2        Leitner             Felix    AUT          1115.7     615.8
## 5640   93  78        Vitenko         Vladislav    KAZ          1117.8     553.8
## 5641   94  43       Crnkovic          Kresimir    CRO          1128.3     556.1
## 5642   95  37      Yaliotnau             Raman    BLR          1112.9     584.0
## 5643   96  94           Kuts             Timur    KAZ          1106.1     534.2
## 5644   97 101     Kletcherov           Michail    BUL          1129.1     531.2
## 5645   98  91       Dotsenko            Andriy    UKR          1129.1     545.4
## 5646   99 104        Femling             Peppe    SWE          1109.5     600.8
## 5647  100  64       Puchianu            Cornel    ROU          1156.2     598.5
## 5648  100  80        Angelis         Apostolos    GRE          1143.2     578.9
## 5649  102  68           Choi             Dujin    KOR          1136.4     569.0
## 5650  103  67         Hodzic              Edin    SRB          1168.5     606.6
## 5651    1   1       Fourcade            Martin    FRA          1797.0     446.4
## 5652    2   2            Boe Johannes Thingnes    NOR          1812.7     444.8
## 5653    3  10         Lesser              Erik    GER          1805.7     458.1
## 5654    4   5       Shipulin             Anton    RUS          1805.1     456.1
## 5655    5   9          Weger          Benjamin    SUI          1824.9     446.8
## 5656    6  12        Peiffer              Arnd    GER          1830.7     451.8
## 5657    7  27       Windisch           Dominik    ITA          1859.8     458.1
## 5658    8   3            Fak             Jakov    SLO          1846.9     462.8
## 5659    9  17        Loginov         Alexander    RUS          1865.0     487.9
## 5660   10  28   Bjoentegaard            Erlend    NOR          1884.1     459.1
## 5661   11   6            Boe            Tarjei    NOR          1877.2     486.2
## 5662   12  16           Eder             Simon    AUT          1864.7     496.5
## 5663   13  15        Babikov             Anton    RUS          1869.2     459.0
## 5664   14  19     Lindstroem           Fredrik    SWE          1878.1     479.6
## 5665   15   7          Hofer             Lukas    ITA          1892.4     476.4
## 5666   16   8      Birkeland        Lars Helge    NOR          1887.9     485.4
## 5667   17  14      Desthieux             Simon    FRA          1925.2     473.5
## 5668   18  20           Doll          Benedikt    GER          1926.9     523.1
## 5669   19  30     Garanichev           Evgeniy    RUS          1918.6     460.3
## 5670   20  13 Fillon Maillet           Quentin    FRA          1926.5     514.5
## 5671   21  21       Tsvetkov             Maxim    RUS          1902.6     503.5
## 5672   22  26      Guigonnat           Antonin    FRA          1924.9     488.5
## 5673   23  24         Bailey            Lowell    USA          1928.4     491.3
## 5674   24  25        Doherty              Sean    USA          1950.2     508.3
## 5675   25   4        Schempp             Simon    GER          1961.9     549.0
## 5676   26  29            Gow             Scott    CAN          2018.5     510.2
## 5677   27  11   Rastorgujevs           Andrejs    LAT          2040.8     555.2
## 5678   28  23        Lapshin           Timofei    KOR          2019.4     537.0
## 5679   29  18    L'Abee-Lund            Henrik    NOR          2055.2     548.2
## 5680   30  22        Eliseev            Matvey    RUS          2123.4     540.5
## 5681    1   1            Boe Johannes Thingnes    NOR          1607.4     403.5
## 5682    2   2       Fourcade            Martin    FRA          1685.4     419.9
## 5683    3   6       Shipulin             Anton    RUS          1701.0     430.0
## 5684    4  18        Loginov         Alexander    RUS          1712.6     401.2
## 5685    5   4        Schempp             Simon    GER          1721.2     405.9
## 5686    6   5      Desthieux             Simon    FRA          1734.5     433.1
## 5687    7  40          Hofer             Lukas    ITA          1743.6     424.0
## 5688    8  12           Doll          Benedikt    GER          1745.6     433.6
## 5689    9  26           Eder             Simon    AUT          1742.3     402.7
## 5690   10  25   Bjoentegaard            Erlend    NOR          1765.2     427.5
## 5691   11  22        Peiffer              Arnd    GER          1762.2     411.6
## 5692   12   3      Guigonnat           Antonin    FRA          1755.9     408.9
## 5693   13  13            Fak             Jakov    SLO          1767.0     428.5
## 5694   14  35         Bailey            Lowell    USA          1752.7     420.8
## 5695   15   9       Windisch           Dominik    ITA          1782.5     422.9
## 5696   16  11          Weger          Benjamin    SUI          1777.9     434.0
## 5697   17  21      Birkeland        Lars Helge    NOR          1761.8     416.2
## 5698   18  36         Claude           Florent    BEL          1774.6     418.7
## 5699   19  24   Rastorgujevs           Andrejs    LAT          1781.0     436.4
## 5700   20  48            Boe            Tarjei    NOR          1796.2     414.5
## 5701   21  54        Finello            Jeremy    SUI          1793.6     415.0
## 5702   22  34         Krcmar            Michal    CZE          1813.0     421.3
## 5703   23  15        Babikov             Anton    RUS          1803.8     456.5
## 5704   24  19     Garanichev           Evgeniy    RUS          1809.0     439.8
## 5705   25  20        Eliseev            Matvey    RUS          1808.3     444.8
## 5706   26  10          Burke               Tim    USA          1799.3     445.3
## 5707   27  16            Gow             Scott    CAN          1809.6     456.1
## 5708   28  27          Iliev          Vladimir    BUL          1811.9     463.4
## 5709   29  30            Gow         Christian    CAN          1798.5     427.4
## 5710   30  17        Doherty              Sean    USA          1807.7     443.6
## 5711   31   8        Lapshin           Timofei    KOR          1798.8     448.3
## 5712   32  44         Lesser              Erik    GER          1822.6     435.6
## 5713   33  14         Ermits             Kalev    EST          1820.6     434.0
## 5714   34  43           Anev          Krasimir    BUL          1839.6     423.9
## 5715   35  51      Muiznieks            Oskars    LAT          1839.9     423.3
## 5716   36  23     Samuelsson         Sebastian    SWE          1854.6     450.3
## 5717   37  46        Beatrix    Jean Guillaume    FRA          1857.2     427.3
## 5718   38  42          Bauer            Klemen    SLO          1857.7     444.4
## 5719   39   7       Gjesbakk           Fredrik    NOR          1850.4     459.4
## 5720   40  29        Otcenas            Martin    SVK          1864.3     448.1
## 5721   41  37        Moravec            Ondrej    CZE          1868.6     437.2
## 5722   42  33       Wiestner           Serafin    SUI          1879.9     479.3
## 5723   43  47        Krupcik             Tomas    CZE          1891.7     442.0
## 5724   44  59        Nawrath           Philipp    GER          1898.2     446.9
## 5725   45  39        Gronman            Tuomas    FIN          1892.7     428.0
## 5726   46  32      Bormolini            Thomas    ITA          1891.3     499.8
## 5727   47  58     Lindstroem           Fredrik    SWE          1893.6     443.0
## 5728   48  56       Nordgren              Leif    USA          1886.9     498.4
## 5729   49  57     Hiidensalo              Olli    FIN          1917.4     498.3
## 5730   50  38          Kuehn          Johannes    GER          1934.0     469.5
## 5731   51  50          Kazar             Matej    SVK          1933.4     459.3
## 5732   52  55         Dovzan              Miha    SLO          1930.9     435.1
## 5733   53  53        Sinapov             Anton    BUL          1973.8     512.0
## 5734   54  49        Strolia          Vytautas    LTU          1990.1     464.0
## 5735   55  28       Eberhard            Tobias    AUT          1991.4     491.2
## 5736   56  60       Tkalenko            Ruslan    UKR          2006.6     487.6
## 5737   57  52         Komatz             David    AUT          2005.9     434.4
## 5738    1  42            Boe Johannes Thingnes    NOR           963.9     462.2
## 5739    2  48       Fourcade            Martin    FRA           967.0     475.7
## 5740    3  47        Peiffer              Arnd    GER           986.3     497.0
## 5741    4  46       Shipulin             Anton    RUS           991.1     505.5
## 5742    5  94      Jacquelin           Emilien    FRA           982.9     493.4
## 5743    6  37      Birkeland        Lars Helge    NOR           997.4     498.3
## 5744    7  38       Eberhard            Julian    AUT          1035.5     538.6
## 5745    8  51        Babikov             Anton    RUS          1021.9     509.0
## 5746    9  77       Chepelin          Vladimir    BLR          1039.7     525.7
## 5747   10  31        Moravec            Ondrej    CZE          1031.4     511.5
## 5748   11  23      Desthieux             Simon    FRA          1064.6     533.6
## 5749   12  78       Siemakov         Volodymyr    UKR          1035.2     519.1
## 5750   13  62           Doll          Benedikt    GER          1060.4     510.2
## 5751   14   2   Rastorgujevs           Andrejs    LAT          1049.5     549.0
## 5752   15  41         Lesser              Erik    GER          1054.9     512.4
## 5753   16  39          Weger          Benjamin    SUI          1044.3     523.1
## 5754   17  27       Windisch           Dominik    ITA          1078.9     488.7
## 5755   18  32           Eder             Simon    AUT          1058.6     553.7
## 5756   19  71          Kuehn          Johannes    GER          1062.6     547.1
## 5757   20  44        Schempp             Simon    GER          1052.6     513.0
## 5758   21  34        Otcenas            Martin    SVK          1049.2     526.1
## 5759   22  43            Boe            Tarjei    NOR          1057.8     542.5
## 5760   23  22        Lapshin           Timofei    KOR          1044.2     525.0
## 5761   24  73       Fourcade             Simon    FRA          1042.9     534.1
## 5762   25  63        Gronman            Tuomas    FIN          1046.8     513.9
## 5763   26  20 Fillon Maillet           Quentin    FRA          1084.1     528.7
## 5764   27  29          Hofer             Lukas    ITA          1068.2     509.7
## 5765   28   7      Guigonnat           Antonin    FRA          1081.9     524.1
## 5766   29   8           Rees             Roman    GER          1065.6     554.9
## 5767   30  88          Guzik          Grzegorz    POL          1059.4     504.1
## 5768   31  50       Tsvetkov             Maxim    RUS          1052.5     555.4
## 5769   32  10       Svendsen        Emil Hegle    NOR          1073.0     546.1
## 5770   33  21            Fak             Jakov    SLO          1068.7     533.5
## 5771   34  15      Yaliotnau             Raman    BLR          1068.5     528.7
## 5772   35  64           Anev          Krasimir    BUL          1057.8     531.3
## 5773   36  93   Bjoentegaard            Erlend    NOR          1076.9     575.5
## 5774   37  26          Bauer            Klemen    SLO          1074.2     526.8
## 5775   38  85    L'Abee-Lund            Henrik    NOR          1074.9     543.7
## 5776   39  49        Lessing            Roland    EST          1071.1     528.3
## 5777   40  33         Roesch           Michael    BEL          1065.2     562.9
## 5778   41  30         Bailey            Lowell    USA          1063.0     540.3
## 5779   42  19        Loginov         Alexander    RUS          1083.8     553.0
## 5780   43  40          Burke               Tim    USA          1072.2     550.7
## 5781   44  36     Pidruchnyi            Dmytro    UKR          1087.7     540.7
## 5782   45  76        Hasilla             Tomas    SVK          1081.3     537.6
## 5783   46   1        Seppala              Tero    FIN          1084.6     550.4
## 5784   47  89       Montello          Giuseppe    ITA          1067.5     544.5
## 5785   48  98        Eliseev            Matvey    RUS          1071.0     505.1
## 5786   49   4   Landertinger           Dominik    AUT          1094.4     565.3
## 5787   50  65       Nordgren              Leif    USA          1073.8     534.4
## 5788   51  54 Nedza-Kubiniec           Andrzej    POL          1066.9     562.9
## 5789   52  99        Vitenko         Vladislav    KAZ          1075.5     532.7
## 5790   53   9     Garanichev           Evgeniy    RUS          1094.9     558.6
## 5791   54  17       Eberhard            Tobias    AUT          1067.0     557.6
## 5792   55  13       Slesingr            Michal    CZE          1092.4     573.7
## 5793   56  95       Puchianu            Cornel    ROU          1093.6     550.2
## 5794   57  91     Grossegger              Sven    AUT          1081.7     541.9
## 5795   58  57       Vaclavik              Adam    CZE          1102.8     598.4
## 5796   58  66           Faur             Remus    ROU          1069.1     548.1
## 5797   60  59        Strolia          Vytautas    LTU          1094.6     578.9
## 5798   61  45         Dolder             Mario    SUI          1107.3     572.6
## 5799   62  35         Krcmar            Michal    CZE          1109.3     546.2
## 5800   63  96        Currier           Russell    USA          1103.1     564.8
## 5801   64  25     Hiidensalo              Olli    FIN          1120.9     581.6
## 5802   65  82         Chenal           Thierry    ITA          1096.0     571.3
## 5803   66  55         Davies              Macx    CAN          1107.6     569.9
## 5804   67  16          Kazar             Matej    SVK          1104.2     533.6
## 5805   68 101        Abasheu           Dzmitry    BLR          1112.5     537.7
## 5806   69  86     Podkorytov          Vassiliy    KAZ          1093.9     544.8
## 5807   70 110         Jaeger            Martin    SUI          1109.8     576.6
## 5808   71  56       Kobonoki           Tsukasa    JPN          1094.1     557.4
## 5809   72 108       Kubaliak            Michal    SVK          1072.8     555.4
## 5810   73  69      Muiznieks            Oskars    LAT          1108.1     537.3
## 5811   74  75      Stenersen          Torstein    SWE          1103.9     552.8
## 5812   75   5        Doherty              Sean    USA          1124.0     541.2
## 5813   76  18         Ermits             Kalev    EST          1110.4     530.1
## 5814   77  84        Yeremin             Roman    KAZ          1129.2     557.0
## 5815   78  11      Bormolini            Thomas    ITA          1112.4     576.0
## 5816   79  67     Dombrovski             Karol    LTU          1092.5     576.5
## 5817   80 109     Gerdzhikov           Dimitar    BUL          1109.4     518.3
## 5818   81 100       Kristejn             Lukas    CZE          1122.0     531.7
## 5819   82  83       Campbell            Carsen    CAN          1117.6     540.6
## 5820   83  14          Pryma             Artem    UKR          1139.7     628.0
## 5821   84  58       Drinovec             Mitja    SLO          1123.0     594.7
## 5822   85  53     Tyshchenko             Artem    UKR          1090.2     554.0
## 5823   86  80         Komatz             David    AUT          1127.9     559.3
## 5824   86  87           Koiv             Kauri    EST          1120.7     580.2
## 5825   88 107       Tkalenko            Ruslan    UKR          1133.3     622.4
## 5826   89 104          Hudec           Matthew    CAN          1115.7     579.4
## 5827   90  70       Szczurek            Lukasz    POL          1133.9     540.6
## 5828   91  68     Hallstroem             Simon    SWE          1152.0     579.9
## 5829   92  24          Iliev          Vladimir    BUL          1161.6     585.8
## 5830   93 106    Soederhielm              Tiio    SWE          1153.6     579.1
## 5831   94   3         Dovzan              Miha    SLO          1137.6     571.4
## 5832   95  28        Varabei            Maksim    BLR          1174.7     572.6
## 5833   96  61          Dixon             Scott    GBR          1128.1     587.9
## 5834   97   6        Sinapov             Anton    BUL          1190.8     617.5
## 5835   98  97          Ozaki            Kosuke    JPN          1169.6     642.8
## 5836   99 103       Arwidson            Tobias    SWE          1139.3     616.0
## 5837  100  92          Braun             Maxim    KAZ          1166.0     620.1
## 5838  101 102         Bricis            Ilmars    LAT          1171.9     628.0
## 5839  102  12       Wiestner           Serafin    SUI          1196.5     628.2
## 5840  103  90          Banys             Linas    LTU          1180.9     566.5
## 5841  104  60            Kim           Yonggyu    KOR          1185.3     585.1
## 5842  105  81        Angelis         Apostolos    GRE          1196.0     576.1
## 5843  106  52            Pop          Gheorghe    ROU          1201.0     622.7
## 5844  107 105         Millar             Aidan    CAN          1196.6     597.0
## 5845  108  74       Crnkovic          Kresimir    CRO          1242.1     623.7
## 5846  109  72         Hodzic              Edin    SRB          1283.5     657.3
## 5847    1   1       Fourcade            Martin    FRA          1967.7     500.2
## 5848    2   6            Boe            Tarjei    NOR          1997.8     506.9
## 5849    3  27   Bjoentegaard            Erlend    NOR          1998.5     506.4
## 5850    4  13           Doll          Benedikt    GER          2004.4     511.8
## 5851    5  28          Kuehn          Johannes    GER          2008.8     489.6
## 5852    6   2            Boe Johannes Thingnes    NOR          2018.9     498.2
## 5853    7  14       Svendsen        Emil Hegle    NOR          2018.5     514.8
## 5854    8  24       Windisch           Dominik    ITA          2021.8     525.8
## 5855    9   4       Shipulin             Anton    RUS          2019.2     522.3
## 5856   10   8      Desthieux             Simon    FRA          2027.5     515.0
## 5857   11  23    L'Abee-Lund            Henrik    NOR          2030.7     513.5
## 5858   12   3            Fak             Jakov    SLO          2027.8     530.6
## 5859   13   9          Weger          Benjamin    SUI          2032.6     518.5
## 5860   14  21        Moravec            Ondrej    CZE          2033.3     500.2
## 5861   15  11           Eder             Simon    AUT          2032.1     492.4
## 5862   16  22         Krcmar            Michal    CZE          2045.6     520.3
## 5863   17  17         Lesser              Erik    GER          2053.4     534.5
## 5864   18  20        Loginov         Alexander    RUS          2052.8     517.2
## 5865   19   5        Peiffer              Arnd    GER          2056.7     525.0
## 5866   20  29       Fourcade             Simon    FRA          2054.8     513.5
## 5867   21  12 Fillon Maillet           Quentin    FRA          2064.7     498.1
## 5868   22  25          Burke               Tim    USA          2069.0     510.9
## 5869   23  19      Guigonnat           Antonin    FRA          2089.6     526.4
## 5870   24  18        Babikov             Anton    RUS          2095.7     534.1
## 5871   25   7          Hofer             Lukas    ITA          2107.4     519.7
## 5872   26  10      Birkeland        Lars Helge    NOR          2115.3     526.6
## 5873   27  16   Rastorgujevs           Andrejs    LAT          2142.8     587.4
## 5874   28  26      Jacquelin           Emilien    FRA          2159.3     571.2
## 5875   29  15       Eberhard            Julian    AUT          2184.1     591.7
## 5876   30  30       Chepelin          Vladimir    BLR          2197.3     569.6
## 5877    1   1            Boe Johannes Thingnes    NOR          1509.5     380.6
## 5878    2   2       Fourcade            Martin    FRA          1571.2     383.1
## 5879    3   4       Shipulin             Anton    RUS          1591.5     387.1
## 5880    4   3        Peiffer              Arnd    GER          1628.5     387.5
## 5881    5  32       Svendsen        Emil Hegle    NOR          1659.3     387.9
## 5882    6   5      Jacquelin           Emilien    FRA          1648.7     414.4
## 5883    7  18           Eder             Simon    AUT          1648.3     408.2
## 5884    8  11      Desthieux             Simon    FRA          1679.2     414.4
## 5885    9   6      Birkeland        Lars Helge    NOR          1671.7     407.5
## 5886   10   7       Eberhard            Julian    AUT          1693.8     379.9
## 5887   11  36   Bjoentegaard            Erlend    NOR          1694.6     406.3
## 5888   12  16          Weger          Benjamin    SUI          1696.4     432.1
## 5889   13  26 Fillon Maillet           Quentin    FRA          1695.6     431.8
## 5890   14   8        Babikov             Anton    RUS          1701.3     401.1
## 5891   15  35           Anev          Krasimir    BUL          1701.9     387.2
## 5892   16  13           Doll          Benedikt    GER          1717.4     407.7
## 5893   17  17       Windisch           Dominik    ITA          1719.7     399.7
## 5894   18  14   Rastorgujevs           Andrejs    LAT          1718.0     396.8
## 5895   19  28      Guigonnat           Antonin    FRA          1715.6     406.6
## 5896   20  31       Tsvetkov             Maxim    RUS          1715.8     405.4
## 5897   21  43          Burke               Tim    USA          1716.2     412.3
## 5898   22  49   Landertinger           Dominik    AUT          1725.3     404.4
## 5899   23  38    L'Abee-Lund            Henrik    NOR          1729.4     390.7
## 5900   24  55       Slesingr            Michal    CZE          1728.3     405.5
## 5901   25  24       Fourcade             Simon    FRA          1719.3     423.8
## 5902   26  40         Roesch           Michael    BEL          1727.8     412.5
## 5903   27  37          Bauer            Klemen    SLO          1725.9     412.4
## 5904   28  19          Kuehn          Johannes    GER          1744.2     419.1
## 5905   29  22            Boe            Tarjei    NOR          1736.6     452.5
## 5906   30  39        Lessing            Roland    EST          1742.3     398.8
## 5907   31  30          Guzik          Grzegorz    POL          1750.6     401.1
## 5908   32  42        Loginov         Alexander    RUS          1766.6     433.6
## 5909   33  48        Eliseev            Matvey    RUS          1762.8     424.5
## 5910   34  58       Vaclavik              Adam    CZE          1764.2     394.7
## 5911   35  41         Bailey            Lowell    USA          1752.9     429.7
## 5912   36  27          Hofer             Lukas    ITA          1781.8     386.0
## 5913   37  15         Lesser              Erik    GER          1747.1     435.1
## 5914   38  44     Pidruchnyi            Dmytro    UKR          1785.9     414.6
## 5915   39  53     Garanichev           Evgeniy    RUS          1784.8     414.3
## 5916   40  29           Rees             Roman    GER          1785.2     414.3
## 5917   41  12       Siemakov         Volodymyr    UKR          1773.7     431.3
## 5918   42  57     Grossegger              Sven    AUT          1767.4     423.0
## 5919   43  10        Moravec            Ondrej    CZE          1782.9     395.4
## 5920   44  50       Nordgren              Leif    USA          1797.6     402.7
## 5921   45   9       Chepelin          Vladimir    BLR          1804.6     412.2
## 5922   46  46        Seppala              Tero    FIN          1823.2     416.5
## 5923   47  47       Montello          Giuseppe    ITA          1810.6     416.5
## 5924   48  21        Otcenas            Martin    SVK          1818.5     424.8
## 5925   49  45        Hasilla             Tomas    SVK          1829.6     479.2
## 5926   50  34      Yaliotnau             Raman    BLR          1852.9     467.8
## 5927   51  56       Puchianu            Cornel    ROU          1850.2     433.1
## 5928   52  52        Vitenko         Vladislav    KAZ          1900.0     462.6
## 5929    1  36            Boe Johannes Thingnes    NOR           999.1     506.5
## 5930    2  38       Fourcade            Martin    FRA          1019.2     515.6
## 5931    3  33            Fak             Jakov    SLO          1040.5     522.9
## 5932    4  35        Schempp             Simon    GER          1051.2     546.5
## 5933    5  10    L'Abee-Lund            Henrik    NOR          1051.3     531.3
## 5934    6  41        Peiffer              Arnd    GER          1046.5     531.7
## 5935    7  61          Weger          Benjamin    SUI          1057.3     525.8
## 5936    8  32         Lesser              Erik    GER          1054.4     523.6
## 5937    9  37       Shipulin             Anton    RUS          1049.0     521.6
## 5938    9 105        Nawrath           Philipp    GER          1049.2     528.4
## 5939   11  66       Eberhard            Julian    AUT          1069.6     530.4
## 5940   12  39     Pidruchnyi            Dmytro    UKR          1066.5     554.2
## 5941   13  22      Birkeland        Lars Helge    NOR          1066.0     550.8
## 5942   14  40            Boe            Tarjei    NOR          1059.9     554.9
## 5943   15  84          Hofer             Lukas    ITA          1073.0     538.3
## 5944   16  89        Lapshin           Timofei    KOR          1063.4     557.0
## 5945   17   7        Eliseev            Matvey    RUS          1068.2     547.8
## 5946   18  63   Rastorgujevs           Andrejs    LAT          1073.6     550.4
## 5947   19  12          Smith            Nathan    CAN          1071.6     545.1
## 5948   20  93       Tsvetkov             Maxim    RUS          1066.8     561.8
## 5949   21  86      Desthieux             Simon    FRA          1090.9     528.9
## 5950   22  25          Bauer            Klemen    SLO          1066.3     530.0
## 5951   22  79        Doherty              Sean    USA          1067.4     543.7
## 5952   24  68          Kuehn          Johannes    GER          1108.0     554.6
## 5953   24  72        Seppala              Tero    FIN          1075.3     559.0
## 5954   26  81         Krcmar            Michal    CZE          1082.4     542.4
## 5955   27  56         Roesch           Michael    BEL          1092.2     572.5
## 5956   28  91    Bjoerndalen         Ole Einar    NOR          1078.4     562.7
## 5957   29  53        Loginov         Alexander    RUS          1098.1     555.1
## 5958   30  57        Babikov             Anton    RUS          1073.7     555.0
## 5959   31 109        Lessing            Roland    EST          1084.8     551.6
## 5960   32  59          Nelin            Jesper    SWE          1106.6     585.9
## 5961   33  64      Tachizaki            Mikito    JPN          1092.5     562.4
## 5962   34  31        Moravec            Ondrej    CZE          1107.6     556.3
## 5963   35  34           Eder             Simon    AUT          1098.8     560.8
## 5964   36  78       Siemakov         Volodymyr    UKR          1089.0     541.0
## 5965   37   2       Tkalenko            Ruslan    UKR          1090.6     564.7
## 5966   38  28 Fillon Maillet           Quentin    FRA          1126.0     581.7
## 5967   39  19        Beatrix    Jean Guillaume    FRA          1094.7     573.1
## 5968   40   3         Dovzan              Miha    SLO          1106.1     573.5
## 5969   41  58      Bormolini            Thomas    ITA          1113.2     578.5
## 5970   41 108   Bjoentegaard            Erlend    NOR          1120.6     575.6
## 5971   43  87            Gow             Scott    CAN          1123.5     560.2
## 5972   44  27     Lindstroem           Fredrik    SWE          1132.2     607.9
## 5973   45  96         Chenal           Thierry    ITA          1102.1     580.5
## 5974   46  21       Slesingr            Michal    CZE          1134.0     588.3
## 5975   47  13           Doll          Benedikt    GER          1142.9     547.1
## 5976   48   9           Faur             Remus    ROU          1112.6     579.4
## 5977   49  80        Finello            Jeremy    SUI          1115.8     589.8
## 5978   50  88        Strolia          Vytautas    LTU          1120.0     591.1
## 5979   51  52      Muiznieks            Oskars    LAT          1127.0     587.1
## 5980   51 107          Green           Brendan    CAN          1115.5     575.0
## 5981   53  49         Bailey            Lowell    USA          1129.0     547.8
## 5982   54  60            Gow         Christian    CAN          1104.7     573.7
## 5983   55  29        Semenov            Sergii    UKR          1135.7     588.8
## 5984   56  94     Mesotitsch            Daniel    AUT          1117.2     589.3
## 5985   57 100     Garanichev           Evgeniy    RUS          1129.3     566.9
## 5986   58  99      Jacquelin           Emilien    FRA          1114.3     571.3
## 5987   59  98       Vaclavik              Adam    CZE          1127.4     600.4
## 5988   60  75          Kazar             Matej    SVK          1135.3     572.4
## 5989   61 102         Kryuko            Viktar    BLR          1118.7     591.0
## 5990   62  26        Otcenas            Martin    SVK          1133.2     593.5
## 5991   63  15        Leitner             Felix    AUT          1142.8     557.2
## 5992   64  45       Kaukenas             Tomas    LTU          1130.8     559.3
## 5993   64  48     Podkorytov          Vassiliy    KAZ          1140.2     589.5
## 5994   66   1      Yaliotnau             Raman    BLR          1150.6     585.6
## 5995   67   4     Kletcherov           Michail    BUL          1131.8     573.2
## 5996   68  54          Iliev          Vladimir    BUL          1145.5     554.1
## 5997   69 103        Zhyrnyi         Oleksandr    UKR          1129.8     580.0
## 5998   70  20        Krupcik             Tomas    CZE          1134.5     590.7
## 5999   70  67       Drinovec             Mitja    SLO          1124.2     558.7
## 6000   72  50       Fourcade             Simon    FRA          1162.1     562.8
## 6001   73   5     Dombrovski             Karol    LTU          1129.4     594.9
## 6002   73  30          Burke               Tim    USA          1152.4     599.4
## 6003   75  90       Puchianu            Cornel    ROU          1138.5     592.8
## 6004   76  44          Guzik          Grzegorz    POL          1156.5     594.7
## 6005   77  74     Samuelsson         Sebastian    SWE          1142.5     594.8
## 6006   78  43        Varabei            Maksim    BLR          1142.5     587.4
## 6007   79  62       Eberhard            Tobias    AUT          1152.8     562.2
## 6008   80  77       Windisch           Dominik    ITA          1172.5     601.6
## 6009   81  24     Hiidensalo              Olli    FIN          1146.4     605.2
## 6010   82 104        Hasilla             Tomas    SVK          1153.0     552.2
## 6011   83  47         Dolder             Mario    SUI          1173.4     553.2
## 6012   84  11       Wiestner           Serafin    SUI          1158.0     583.9
## 6013   85  83         Waeger            Lorenz    AUT          1145.5     564.3
## 6014   86  70        Sinapov             Anton    BUL          1164.6     634.7
## 6015   87   6 Nedza-Kubiniec           Andrzej    POL          1139.5     601.8
## 6016   88   8           Sima            Michal    SVK          1156.9     567.6
## 6017   89  42         Zahkna              Rene    EST          1154.9     618.1
## 6018   90  51           Buta            George    ROU          1156.7     592.3
## 6019   91  76        Yeremin             Roman    KAZ          1197.6     603.5
## 6020   92  85       Darozhka        Aliaksandr    BLR          1181.7     646.4
## 6021   93  73       Szczurek            Lukasz    POL          1177.5     636.3
## 6022   94  69       Crnkovic          Kresimir    CRO          1188.1     598.0
## 6023   95  82         Ermits             Kalev    EST          1159.7     580.0
## 6024   96  71           Lusa          Daumants    LAT          1145.7     602.6
## 6025   97  92       Kobonoki           Tsukasa    JPN          1176.1     640.6
## 6026   98  16       Nordgren              Leif    USA          1167.3     629.4
## 6027   99  14  Loukkaanhuhta             Mikko    FIN          1175.2     585.5
## 6028  100 101         Jaeger            Martin    SUI          1161.6     643.0
## 6029  101  18         Pantov             Anton    KAZ          1168.9     581.3
## 6030  102  17      Stenersen          Torstein    SWE          1165.1     629.4
## 6031  103  97       Schommer              Paul    USA          1181.5     611.2
## 6032  104  95          Braun             Maxim    KAZ          1169.4     578.9
## 6033  105  23          Dixon             Scott    GBR          1191.8     611.4
## 6034  106  46            Kim           Yonggyu    KOR          1251.6     604.5
## 6035  107  65         Hodzic              Edin    SRB          1241.0     659.4
## 6036  108  55        Angelis         Apostolos    GRE          1300.8     668.3
## 6037    1   1            Boe Johannes Thingnes    NOR          1826.8     434.2
## 6038    2   3            Fak             Jakov    SLO          1885.7     452.8
## 6039    3   2       Fourcade            Martin    FRA          1905.6     519.4
## 6040    4   4        Schempp             Simon    GER          1902.0     436.4
## 6041    5  14            Boe            Tarjei    NOR          1906.5     437.3
## 6042    6  20       Tsvetkov             Maxim    RUS          1904.8     456.4
## 6043    7  15          Hofer             Lukas    ITA          1926.0     459.1
## 6044    8   5    L'Abee-Lund            Henrik    NOR          1927.0     459.2
## 6045    9   9       Shipulin             Anton    RUS          1922.4     448.7
## 6046   10  13      Birkeland        Lars Helge    NOR          1928.2     465.6
## 6047   11  11       Eberhard            Julian    AUT          1953.9     475.3
## 6048   12  38 Fillon Maillet           Quentin    FRA          1952.5     484.3
## 6049   13   6        Peiffer              Arnd    GER          1953.2     448.3
## 6050   14  21      Desthieux             Simon    FRA          1967.5     472.7
## 6051   15   8         Lesser              Erik    GER          1963.5     466.0
## 6052   16  44     Lindstroem           Fredrik    SWE          1965.1     451.3
## 6053   17  23        Doherty              Sean    USA          1945.8     451.4
## 6054   18  12     Pidruchnyi            Dmytro    UKR          1966.3     466.8
## 6055   19  17        Eliseev            Matvey    RUS          1953.4     480.4
## 6056   20  30        Babikov             Anton    RUS          1963.1     484.8
## 6057   21  32          Nelin            Jesper    SWE          1979.2     440.4
## 6058   22   7          Weger          Benjamin    SUI          1985.4     467.4
## 6059   23  18   Rastorgujevs           Andrejs    LAT          1995.5     491.4
## 6060   24  39        Beatrix    Jean Guillaume    FRA          1980.0     445.2
## 6061   25  26         Krcmar            Michal    CZE          1990.9     478.9
## 6062   26  57     Garanichev           Evgeniy    RUS          1990.1     462.4
## 6063   27  47           Doll          Benedikt    GER          2007.0     439.6
## 6064   28  35           Eder             Simon    AUT          2000.2     447.3
## 6065   29  10        Nawrath           Philipp    GER          1983.8     449.9
## 6066   30  41      Bormolini            Thomas    ITA          2014.2     512.7
## 6067   31  19          Smith            Nathan    CAN          1993.6     486.9
## 6068   32  27         Roesch           Michael    BEL          2024.3     464.9
## 6069   33  52          Green           Brendan    CAN          2028.4     476.9
## 6070   34  42   Bjoentegaard            Erlend    NOR          2040.1     450.5
## 6071   35  37       Tkalenko            Ruslan    UKR          2016.2     503.3
## 6072   36  53         Bailey            Lowell    USA          2023.3     458.2
## 6073   37  22          Bauer            Klemen    SLO          2027.9     468.1
## 6074   38  50        Strolia          Vytautas    LTU          2023.7     489.4
## 6075   39  49        Finello            Jeremy    SUI          2038.0     466.0
## 6076   40  46       Slesingr            Michal    CZE          2037.9     485.4
## 6077   41  24          Kuehn          Johannes    GER          2059.9     499.0
## 6078   42  25        Seppala              Tero    FIN          2058.4     498.2
## 6079   43  34        Moravec            Ondrej    CZE          2058.9     480.9
## 6080   44  29        Loginov         Alexander    RUS          2057.4     524.1
## 6081   45  40         Dovzan              Miha    SLO          2057.8     491.7
## 6082   46  28    Bjoerndalen         Ole Einar    NOR          2071.6     457.2
## 6083   47  59       Vaclavik              Adam    CZE          2120.7     472.1
## 6084   48  43            Gow             Scott    CAN          2126.9     499.0
## 6085   49  54            Gow         Christian    CAN          2120.3     519.6
## 6086   50  31        Lessing            Roland    EST          2130.4     489.5
## 6087   51  60          Kazar             Matej    SVK          2129.9     495.9
## 6088   52  51      Muiznieks            Oskars    LAT          2139.4     524.5
## 6089   53  55        Semenov            Sergii    UKR          2136.1     522.3
## 6090   54  45         Chenal           Thierry    ITA          2166.5     516.6
## 6091   55  33      Tachizaki            Mikito    JPN          2143.6     545.3
## 6092   56  56     Mesotitsch            Daniel    AUT          2162.4     504.1
## 6093   57  48           Faur             Remus    ROU          2144.3     507.7
## 6094    1  19       Shipulin             Anton    RUS           986.8     505.7
## 6095    2  12   Rastorgujevs           Andrejs    LAT           997.8     513.6
## 6096    3   6 Fillon Maillet           Quentin    FRA          1003.1     507.8
## 6097    4  30            Boe Johannes Thingnes    NOR          1009.1     534.8
## 6098    5  21        Peiffer              Arnd    GER          1019.6     533.4
## 6099    6  34      Desthieux             Simon    FRA          1027.1     517.4
## 6100    7  47         Lesser              Erik    GER          1016.1     536.9
## 6101    8  23        Schempp             Simon    GER          1033.4     526.8
## 6102    9  11          Hofer             Lukas    ITA          1030.5     539.9
## 6103   10  20       Windisch           Dominik    ITA          1020.4     528.8
## 6104   11  72    L'Abee-Lund            Henrik    NOR          1027.0     537.7
## 6105   12  91    Bjoerndalen         Ole Einar    NOR          1010.5     516.9
## 6106   13  51           Anev          Krasimir    BUL          1018.2     524.5
## 6107   14  32      Birkeland        Lars Helge    NOR          1015.1     516.7
## 6108   15  24        Lapshin           Timofei    KOR          1021.6     537.9
## 6109   16  22         Bailey            Lowell    USA          1026.6     537.7
## 6110   17  55       Nordgren              Leif    USA          1024.8     533.7
## 6111   18   8            Fak             Jakov    SLO          1032.0     519.7
## 6112   19   5          Bauer            Klemen    SLO          1045.0     557.5
## 6113   20  29        Moravec            Ondrej    CZE          1029.1     536.8
## 6114   21  46     Samuelsson         Sebastian    SWE          1045.8     542.0
## 6115   22  56          Nelin            Jesper    SWE          1038.4     526.4
## 6116   23   4           Doll          Benedikt    GER          1040.0     547.4
## 6117   24  42   Bjoentegaard            Erlend    NOR          1038.8     524.7
## 6118   25  17          Iliev          Vladimir    BUL          1053.3     540.2
## 6119   26  98       Malyshko            Dmitry    RUS          1036.6     517.9
## 6120   27 100           Rees             Roman    GER          1038.0     537.7
## 6121   28  15       Eberhard            Julian    AUT          1074.0     537.4
## 6122   29  40      Bormolini            Thomas    ITA          1044.4     551.5
## 6123   30   2       Tsvetkov             Maxim    RUS          1048.5     554.5
## 6124   31  13    Bocharnikov            Sergey    BLR          1043.8     527.3
## 6125   32  81     Mesotitsch            Daniel    AUT          1044.4     537.6
## 6126   33  10            Boe            Tarjei    NOR          1074.8     541.4
## 6127   34  70          Green           Brendan    CAN          1049.7     535.7
## 6128   35  54        Doherty              Sean    USA          1069.6     554.9
## 6129   36  37         Dolder             Mario    SUI          1067.1     571.2
## 6130   37  87     Ponsiluoma            Martin    SWE          1043.9     536.9
## 6131   38   9          Burke               Tim    USA          1084.0     567.8
## 6132   39  52        Otcenas            Martin    SVK          1065.0     567.2
## 6133   40  62       Puchianu            Cornel    ROU          1070.9     560.0
## 6134   41  44      Guigonnat           Antonin    FRA          1080.2     535.6
## 6135   42  45         Dovzan              Miha    SLO          1066.3     554.2
## 6136   43  69       Fourcade             Simon    FRA          1066.2     547.0
## 6137   44  58       Vaclavik              Adam    CZE          1078.1     567.4
## 6138   45  35         Claude           Florent    BEL          1070.7     552.0
## 6139   46  18     Garanichev           Evgeniy    RUS          1080.6     566.8
## 6140   47  80        Vitenko         Vladislav    KAZ          1066.6     543.4
## 6141   48  60         Zahkna              Rene    EST          1062.8     537.6
## 6142   49  93     Gerdzhikov           Dimitar    BUL          1086.0     547.3
## 6143   50  49       Eberhard            Tobias    AUT          1081.6     557.2
## 6144   51  48        Babikov             Anton    RUS          1068.2     568.9
## 6145   52  53       Siemakov         Volodymyr    UKR          1067.2     571.5
## 6146   53  16          Kazar             Matej    SVK          1091.5     531.6
## 6147   54  79        Yeremin             Roman    KAZ          1095.9     536.7
## 6148   55  61           Buta            George    ROU          1067.6     547.5
## 6149   56  36          Pryma             Artem    UKR          1078.3     556.0
## 6150   57  38        Seppala              Tero    FIN          1085.1     567.5
## 6151   58  33     Hiidensalo              Olli    FIN          1064.0     572.7
## 6152   59  99     Dombrovski             Karol    LTU          1065.6     543.1
## 6153   60  71        Strolia          Vytautas    LTU          1089.0     560.7
## 6154   61   3     Pidruchnyi            Dmytro    UKR          1100.8     576.9
## 6155   62  14     Lindstroem           Fredrik    SWE          1090.9     574.9
## 6156   63  66         Bartko             Simon    SVK          1091.5     585.5
## 6157   64  74      Yaliotnau             Raman    BLR          1109.2     578.9
## 6158   65  92        Smolski             Anton    BLR          1097.3     539.0
## 6159   66  85         Soukup          Jaroslav    CZE          1093.7     547.1
## 6160   67  26         Ermits             Kalev    EST          1113.1     576.9
## 6161   68  97           Howe              Alex    USA          1095.3     562.1
## 6162   69  78          Kuehn          Johannes    GER          1127.7     542.2
## 6163   70  75       Kobonoki           Tsukasa    JPN          1099.3     590.9
## 6164   71  88           Koiv             Kauri    EST          1098.0     567.1
## 6165   72  77        Gronman            Tuomas    FIN          1085.2     575.3
## 6166   73  67       Tkalenko            Ruslan    UKR          1114.5     579.3
## 6167   74  64       Drinovec             Mitja    SLO          1112.4     581.1
## 6168   75  39        Finello            Jeremy    SUI          1113.4     618.5
## 6169   76   7          Weger          Benjamin    SUI          1121.1     605.5
## 6170   77  86    Plessnitzer             Kevin    AUT          1123.0     590.0
## 6171   78  96     Tyshchenko             Artem    UKR          1112.8     576.4
## 6172   79  41            Gow         Christian    CAN          1107.8     576.7
## 6173   80 103      Jacquelin           Emilien    FRA          1113.9     583.9
## 6174   81  63 Nedza-Kubiniec           Andrzej    POL          1116.8     567.8
## 6175   82  59        Angelis         Apostolos    GRE          1124.9     579.4
## 6176   83  90        Hasilla             Tomas    SVK          1124.8     572.9
## 6177   84  65      Patrijuks        Aleksandrs    LAT          1123.5     582.4
## 6178   85  76     Burkhalter            Joscha    SUI          1138.0     572.3
## 6179   86  25            Gow             Scott    CAN          1132.6     598.1
## 6180   87  83        Eliseev            Matvey    RUS          1101.6     606.8
## 6181   88   1         Krcmar            Michal    CZE          1143.2     633.3
## 6182   89  27          Guzik          Grzegorz    POL          1142.7     556.3
## 6183   90  95     Podkorytov          Vassiliy    KAZ          1106.8     563.9
## 6184   91  89           Faur             Remus    ROU          1123.5     554.2
## 6185   92  82        Sinapov             Anton    BUL          1150.4     619.5
## 6186   93  50       Chepelin          Vladimir    BLR          1189.2     640.2
## 6187   94  94          Ozaki            Kosuke    JPN          1170.5     603.4
## 6188   95  84          Braun             Maxim    KAZ          1127.6     587.7
## 6189   96  68       Kaukenas             Tomas    LTU          1158.0     643.7
## 6190   97 104       Szwajnos            Marcin    POL          1214.0     655.1
## 6191   98  57          Dixon             Scott    GBR          1188.1     610.8
## 6192   99 101        Slotins           Roberts    LAT          1222.5     642.4
## 6193  100  73            Kim           Yonggyu    KOR          1241.8     620.8
## 6194    1  16       Eberhard            Julian    AUT          1895.1     492.3
## 6195    2   1       Fourcade            Martin    FRA          1877.9     468.1
## 6196    3   3       Shipulin             Anton    RUS          1882.8     473.8
## 6197    4  13           Doll          Benedikt    GER          1907.0     500.3
## 6198    5  15         Lesser              Erik    GER          1904.4     480.2
## 6199    6   5        Peiffer              Arnd    GER          1911.7     524.0
## 6200    7  19       Windisch           Dominik    ITA          1927.2     470.9
## 6201    8  22         Krcmar            Michal    CZE          1926.3     481.7
## 6202    9  20        Moravec            Ondrej    CZE          1918.9     486.2
## 6203   10  12 Fillon Maillet           Quentin    FRA          1918.5     476.5
## 6204   11  21      Guigonnat           Antonin    FRA          1916.9     506.2
## 6205   12   4            Fak             Jakov    SLO          1942.1     508.9
## 6206   13   8          Hofer             Lukas    ITA          1940.2     474.5
## 6207   14  29         Bailey            Lowell    USA          1941.7     507.8
## 6208   15  23     Lindstroem           Fredrik    SWE          1944.2     492.2
## 6209   16   9        Schempp             Simon    GER          1957.3     504.0
## 6210   17  27           Anev          Krasimir    BUL          1933.4     497.0
## 6211   18  18    L'Abee-Lund            Henrik    NOR          1961.2     500.0
## 6212   19   2            Boe Johannes Thingnes    NOR          1962.5     520.1
## 6213   20   6            Boe            Tarjei    NOR          1960.9     510.5
## 6214   21   7      Desthieux             Simon    FRA          1973.8     491.9
## 6215   22  14   Rastorgujevs           Andrejs    LAT          1998.0     537.7
## 6216   23  17        Babikov             Anton    RUS          2009.2     522.5
## 6217   24  28        Lapshin           Timofei    KOR          2008.6     502.9
## 6218   25  10      Birkeland        Lars Helge    NOR          1999.6     533.4
## 6219   26  11          Weger          Benjamin    SUI          2049.3     501.8
## 6220   27  25   Bjoentegaard            Erlend    NOR          2074.1     537.1
## 6221   28  26    Bjoerndalen         Ole Einar    NOR          2071.0     550.9
## 6222   29  24          Kuehn          Johannes    GER          2118.7     576.8
## 6223   30  30       Nordgren              Leif    USA          2096.6     535.0
## 6224    1  18       Fourcade            Martin    FRA          1065.6     517.2
## 6225    2  58       Svendsen        Emil Hegle    NOR          1070.2     521.8
## 6226    3  10            Boe Johannes Thingnes    NOR          1079.2     510.0
## 6227    4  22          Burke               Tim    USA          1072.7     522.2
## 6228    5  33            Boe            Tarjei    NOR          1089.8     544.3
## 6229    6  11          Hofer             Lukas    ITA          1098.3     520.6
## 6230    7  31            Fak             Jakov    SLO          1091.0     535.3
## 6231    8  13          Weger          Benjamin    SUI          1102.6     535.1
## 6232    9   6         Krcmar            Michal    CZE          1111.4     555.5
## 6233   10   8     Pidruchnyi            Dmytro    UKR          1116.2     527.6
## 6234   11  16        Moravec            Ondrej    CZE          1111.5     529.0
## 6235   12  28        Peiffer              Arnd    GER          1123.8     549.9
## 6236   13  15      Desthieux             Simon    FRA          1124.1     539.8
## 6237   14  34        Lapshin           Timofei    KOR          1104.8     552.4
## 6238   15  17      Birkeland        Lars Helge    NOR          1116.5     529.6
## 6239   16  21          Pryma             Artem    UKR          1126.6     549.5
## 6240   17  14           Doll          Benedikt    GER          1144.3     575.6
## 6241   18  20       Eberhard            Julian    AUT          1145.3     543.2
## 6242   18  96    Bocharnikov            Sergey    BLR          1121.5     539.8
## 6243   20  44          Kuehn          Johannes    GER          1137.6     579.3
## 6244   21  63        Eliseev            Matvey    RUS          1109.6     542.5
## 6245   22   1       Windisch           Dominik    ITA          1142.5     581.5
## 6246   23  27        Loginov         Alexander    RUS          1149.8     572.4
## 6247   24  38     Lindstroem           Fredrik    SWE          1137.9     559.9
## 6248   25  88         Soukup          Jaroslav    CZE          1138.0     572.4
## 6249   26  36         Claude           Florent    BEL          1126.7     565.1
##      Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time      year
## 1          424.8       43.2          24.0          8.0      0.0 2014-2015
## 2          436.1       39.8          20.0          8.0      0.0 2014-2015
## 3          430.3       43.3          23.0         26.9      0.0 2014-2015
## 4          426.8       48.5          29.0          7.9      0.0 2014-2015
## 5          436.7       45.6          26.0          7.4      0.0 2014-2015
## 6          435.7       48.1          27.0          7.5      0.0 2014-2015
## 7          426.0       48.6          30.0         27.5      0.0 2014-2015
## 8          443.3       37.7          18.0          7.9      0.0 2014-2015
## 9          433.0       43.3          24.0         28.6      0.0 2014-2015
## 10         442.8       46.1          26.0          8.0      0.0 2014-2015
## 11         441.8       48.2          29.0         27.2      0.0 2014-2015
## 12         433.3       41.9          22.0          8.3      0.0 2014-2015
## 13         434.8       47.9          28.0         28.8      0.0 2014-2015
## 14         441.5       47.9          27.0         30.0      0.0 2014-2015
## 15         448.0       44.2          25.0          7.7      0.0 2014-2015
## 16         443.3       42.9          22.0         28.6      0.0 2014-2015
## 17         436.6       46.8          28.0         28.2      0.0 2014-2015
## 18         447.2       45.4          24.0          8.5      0.0 2014-2015
## 19         433.9       46.5          27.0         51.6      0.0 2014-2015
## 20         441.1       51.3          32.0          8.4      0.0 2014-2015
## 21         441.1       47.2          27.0          7.4      0.0 2014-2015
## 22         445.9       50.6          29.0         29.1      0.0 2014-2015
## 23         439.1       49.0          28.0         29.2      0.0 2014-2015
## 24         445.2       44.0          21.0          8.3      0.0 2014-2015
## 25         432.4       44.9          24.0         30.7      0.0 2014-2015
## 26         441.6       46.5          27.0         30.3      0.0 2014-2015
## 27         450.4       46.8          27.0          8.0      0.0 2014-2015
## 28         440.8       50.6          30.0         28.6      0.0 2014-2015
## 29         431.2       48.6          30.0          8.2      0.0 2014-2015
## 30         449.3       49.2          29.0         30.5      0.0 2014-2015
## 31         443.7       42.3          21.0         29.7      0.0 2014-2015
## 32         451.7       45.1          24.0         30.6      0.0 2014-2015
## 33         442.8       47.5          26.0         50.0      0.0 2014-2015
## 34         452.2       48.1          29.0         28.2      0.0 2014-2015
## 35         449.8       48.7          29.0          7.8      0.0 2014-2015
## 36         443.4       46.6          26.0          7.9      0.0 2014-2015
## 37         452.4       46.8          26.0         29.3      0.0 2014-2015
## 38         447.3       43.8          25.0         27.1      0.0 2014-2015
## 39         449.7       48.1          28.0         29.9      0.0 2014-2015
## 40         439.7       55.7          33.0         30.2      0.0 2014-2015
## 41         452.4       52.0          30.0         52.7      0.0 2014-2015
## 42         458.9       57.5          37.0          8.9      0.0 2014-2015
## 43         453.9       53.1          33.0         29.6      0.0 2014-2015
## 44         453.1       48.4          28.0         30.1      0.0 2014-2015
## 45         447.2       48.1          27.0         51.4      0.0 2014-2015
## 46         458.9       47.6          26.0         30.0      0.0 2014-2015
## 47         444.4       50.3          30.0         49.1      0.0 2014-2015
## 48         435.9       50.4          30.0         30.4      0.0 2014-2015
## 49         450.4       56.5          36.0         28.6      0.0 2014-2015
## 50         458.2       49.0          28.0         52.6      0.0 2014-2015
## 51         466.3       48.3          27.0          8.5      0.0 2014-2015
## 52         460.0       59.7          39.0          7.3      0.0 2014-2015
## 53         442.4       46.2          25.0         51.4      0.0 2014-2015
## 54         451.1       57.0          36.0         50.9      0.0 2014-2015
## 55         437.4       45.1          25.0         29.4      0.0 2014-2015
## 56         448.2       51.8          30.0         49.0      0.0 2014-2015
## 57         461.1       48.4          26.0         29.2      0.0 2014-2015
## 58         462.0       47.6          26.0         50.6      0.0 2014-2015
## 59         453.6       41.8          20.0          8.6      0.0 2014-2015
## 60         462.1       63.2          41.0          8.1      0.0 2014-2015
## 61         443.3       45.2          24.0         54.4      0.0 2014-2015
## 62         453.3       47.5          26.0         53.0      0.0 2014-2015
## 63         444.9       52.7          32.0         51.2      0.0 2014-2015
## 64         449.9       49.8          28.0         76.9      0.0 2014-2015
## 65         455.9       49.5          28.0         52.4      0.0 2014-2015
## 66         459.3       47.4          27.0         53.0      0.0 2014-2015
## 67         471.2       48.9          28.0          8.5      0.0 2014-2015
## 68         478.3       45.3          24.0          8.5      0.0 2014-2015
## 69         469.9       44.9          26.0         48.5      0.0 2014-2015
## 70         459.0       52.4          33.0         52.8      0.0 2014-2015
## 71         443.3       43.9          23.0         31.7      0.0 2014-2015
## 72         446.9       52.4          30.0         32.0      0.0 2014-2015
## 73         456.1       56.3          34.0         28.8      0.0 2014-2015
## 74         448.4       50.0          29.0         28.4      0.0 2014-2015
## 75         492.8       45.3          23.0          8.7      0.0 2014-2015
## 76         469.2       45.8          24.0          8.3      0.0 2014-2015
## 77         451.0       43.2          23.0         54.9      0.0 2014-2015
## 78         459.1       52.0          30.0         53.2      0.0 2014-2015
## 79         445.9       48.8          28.0         53.2      0.0 2014-2015
## 80         466.5       41.4          20.0         32.1      0.0 2014-2015
## 81         481.3       47.5          26.0          8.7      0.0 2014-2015
## 82         466.5       46.5          25.0         54.7      0.0 2014-2015
## 83         467.9       50.0          29.0          8.3      0.0 2014-2015
## 84         482.5       44.1          24.0         31.5      0.0 2014-2015
## 85         480.7       56.9          34.0          9.3      0.0 2014-2015
## 86         452.5       54.1          33.0         49.9      0.0 2014-2015
## 87         459.1       49.5          28.0         51.6      0.0 2014-2015
## 88         473.0       50.2          28.0         30.8      0.0 2014-2015
## 89         470.7       51.6          28.0         31.8      0.0 2014-2015
## 90         481.6       52.9          33.0          7.8      0.0 2014-2015
## 91         449.3       52.1          32.0         79.4      0.0 2014-2015
## 92         472.2       48.5          27.0         33.3      0.0 2014-2015
## 93         471.5       49.7          27.0         55.2      0.0 2014-2015
## 94         481.7       65.9          44.0          8.4      0.0 2014-2015
## 95         459.5       49.2          27.0         56.3      0.0 2014-2015
## 96         461.9       67.3          45.0         54.5      0.0 2014-2015
## 97         468.1       46.2          25.0         31.1      0.0 2014-2015
## 98         473.7       59.2          37.0        105.0      0.0 2014-2015
## 99         480.9       54.6          33.0         56.7      0.0 2014-2015
## 100        491.2       53.8          30.0         58.6      0.0 2014-2015
## 101        501.8       57.5          35.0         82.7      0.0 2014-2015
## 102        329.8       41.1          21.0          8.2      0.0 2014-2015
## 103        332.5       39.3          20.0          9.0      0.0 2014-2015
## 104        334.2       38.9          21.0          9.3      0.0 2014-2015
## 105        332.0       39.7          22.0          8.7      0.0 2014-2015
## 106        329.7       40.3          21.0          8.8      0.0 2014-2015
## 107        329.4       46.0          26.0          7.9      0.0 2014-2015
## 108        328.2       41.4          22.0         28.0      0.0 2014-2015
## 109        328.9       42.9          24.0          8.6      0.0 2014-2015
## 110        326.8       43.5          23.0          7.6      0.0 2014-2015
## 111        332.8       50.2          30.0          8.3      0.0 2014-2015
## 112        330.6       43.9          24.0          7.9      0.0 2014-2015
## 113        328.4       42.9          24.0          8.1      0.0 2014-2015
## 114        323.3       46.0          26.0         28.5      0.0 2014-2015
## 115        338.4       46.9          27.0          8.2      0.0 2014-2015
## 116        330.8       42.1          24.0         28.7      0.0 2014-2015
## 117        325.8       43.5          25.0         49.2      0.0 2014-2015
## 118        333.5       45.1          25.0         30.4      0.0 2014-2015
## 119        334.5       44.2          25.0          8.2      0.0 2014-2015
## 120        336.0       43.8          25.0          8.0      0.0 2014-2015
## 121        348.0       48.3          27.0         30.6      0.0 2014-2015
## 122        331.7       47.6          28.0         29.2      0.0 2014-2015
## 123        342.4       54.4          34.0         50.7      0.0 2014-2015
## 124        331.5       48.6          30.0         49.5      0.0 2014-2015
## 125        337.7       44.5          25.0         30.0      0.0 2014-2015
## 126        339.2       42.9          25.0         30.6      0.0 2014-2015
## 127        331.5       45.3          27.0         29.0      0.0 2014-2015
## 128        336.4       52.4          35.0          9.2      0.0 2014-2015
## 129        355.7       51.9          30.0         30.6      0.0 2014-2015
## 130        349.5       45.7          26.0          9.4      0.0 2014-2015
## 131        332.7       45.5          27.0         47.8      0.0 2014-2015
## 132        334.5       43.6          24.0         50.7      0.0 2014-2015
## 133        332.4       46.1          27.0         70.8      0.0 2014-2015
## 134        333.8       54.4          36.0         30.1      0.0 2014-2015
## 135        338.8       48.8          30.0         51.9      0.0 2014-2015
## 136        339.4       46.1          26.0         29.2      0.0 2014-2015
## 137        333.2       43.3          26.0         68.5      0.0 2014-2015
## 138        342.7       44.6          22.0          8.2      0.0 2014-2015
## 139        342.1       45.8          26.0         75.6      0.0 2014-2015
## 140        346.1       46.7          26.0         53.5      0.0 2014-2015
## 141        331.5       45.6          27.0         28.8      0.0 2014-2015
## 142        340.6       48.9          27.0         30.2      0.0 2014-2015
## 143        344.8       47.5          27.0          8.3      0.0 2014-2015
## 144        349.8       47.2          27.0          8.4      0.0 2014-2015
## 145        353.5       46.8          26.0         30.2      0.0 2014-2015
## 146        343.3       57.8          36.0         76.4      0.0 2014-2015
## 147        349.4       49.3          27.0         31.5      0.0 2014-2015
## 148        345.7       46.7          25.0         51.8      0.0 2014-2015
## 149        347.7       51.9          30.0         54.6      0.0 2014-2015
## 150        347.2       47.5          26.0         52.9      0.0 2014-2015
## 151        346.1       48.6          28.0         95.8      0.0 2014-2015
## 152        345.5       51.0          29.0         72.9      0.0 2014-2015
## 153        363.2       46.3          26.0         51.4      0.0 2014-2015
## 154        372.4       43.1          23.0          8.8      0.0 2014-2015
## 155        724.6       47.8          24.0          5.4      0.0 2014-2015
## 156        723.2       50.3          27.0          5.3      0.0 2014-2015
## 157        721.6       49.2          26.0          5.1      0.0 2014-2015
## 158        734.7       51.9          27.0          5.2      0.0 2014-2015
## 159        716.9       48.8          23.0          5.6      0.0 2014-2015
## 160        739.2       47.7          23.0          5.4      0.0 2014-2015
## 161        731.0       50.8          26.0          5.6      0.0 2014-2015
## 162        724.4       51.7          29.0          5.4      0.0 2014-2015
## 163        722.8       49.9          23.0         28.5      0.0 2014-2015
## 164        716.0       52.1          28.0          5.7      0.0 2014-2015
## 165        716.7       51.5          26.0          5.4      0.0 2014-2015
## 166        740.5       53.6          29.0          5.8      0.0 2014-2015
## 167        727.2       48.6          24.0         27.0      0.0 2014-2015
## 168        748.1       50.7          25.0          5.7      0.0 2014-2015
## 169        747.7       50.5          26.0          6.5      0.0 2014-2015
## 170        730.8       52.9          27.0         28.7      0.0 2014-2015
## 171        738.0       53.9          30.0          5.8      0.0 2014-2015
## 172        746.1       48.2          22.0          5.9      0.0 2014-2015
## 173        729.3       51.2          26.0         27.6      0.0 2014-2015
## 174        755.3       54.0          29.0          5.0      0.0 2014-2015
## 175        733.5       52.3          26.0          5.8      0.0 2014-2015
## 176        750.2       52.7          29.0          5.8      0.0 2014-2015
## 177        726.4       52.6          28.0          5.7      0.0 2014-2015
## 178        731.3       50.5          25.0         28.6      0.0 2014-2015
## 179        734.0       49.7          24.0          5.7      0.0 2014-2015
## 180        739.0       58.4          33.0         28.3      0.0 2014-2015
## 181        748.3       58.0          33.0         28.5      0.0 2014-2015
## 182        724.1       55.9          32.0         51.0      0.0 2014-2015
## 183        763.2       52.8          26.0          5.8      0.0 2014-2015
## 184        744.6       54.4          28.0         50.3      0.0 2014-2015
## 185        748.2       47.0          24.0          5.5      0.0 2014-2015
## 186        737.8       54.5          31.0         52.8      0.0 2014-2015
## 187        745.7       51.2          27.0         52.7      0.0 2014-2015
## 188        762.2       47.9          24.0         28.1      0.0 2014-2015
## 189        764.1       47.2          23.0          5.9      0.0 2014-2015
## 190        745.6       53.0          27.0         30.9      0.0 2014-2015
## 191        734.6       50.5          28.0         71.3      0.0 2014-2015
## 192        759.1       47.6          21.0          6.4      0.0 2014-2015
## 193        735.5       46.9          23.0         28.9      0.0 2014-2015
## 194        729.1       54.9          29.0         79.4      0.0 2014-2015
## 195        740.3       52.7          26.0         29.0      0.0 2014-2015
## 196        744.8       54.7          32.0         51.9      0.0 2014-2015
## 197        743.5       47.9          23.0         29.1      0.0 2014-2015
## 198        754.9       60.7          37.0         29.7      0.0 2014-2015
## 199        764.2       58.0          33.0          6.5      0.0 2014-2015
## 200        728.9       53.1          31.0         73.4      0.0 2014-2015
## 201        767.6       56.1          31.0         53.8      0.0 2014-2015
## 202        755.5       52.2          27.0          5.8      0.0 2014-2015
## 203        767.4       54.8          30.0         30.0      0.0 2014-2015
## 204        770.8       57.0          33.0          5.8      0.0 2014-2015
## 205        792.9       46.7          22.0          5.6      0.0 2014-2015
## 206        764.4       52.7          26.0          5.7      0.0 2014-2015
## 207        748.1       54.6          28.0         78.5      0.0 2014-2015
## 208        770.2       54.0          29.0          6.4      0.0 2014-2015
## 209        747.4       56.1          31.0         75.9      0.0 2014-2015
## 210        786.4       48.9          25.0         30.7      0.0 2014-2015
## 211        771.4       53.1          27.0         29.8      0.0 2014-2015
## 212        741.7       52.4          29.0         49.3      0.0 2014-2015
## 213        764.0       63.2          39.0         51.1      0.0 2014-2015
## 214        751.9       49.4          25.0         29.4      0.0 2014-2015
## 215        774.0       55.7          28.0          6.1      0.0 2014-2015
## 216        757.7       47.8          23.0         31.0      0.0 2014-2015
## 217        759.4       53.6          31.0         52.9      0.0 2014-2015
## 218        754.3       52.8          25.0         78.5      0.0 2014-2015
## 219        755.0       47.3          23.0         51.2      0.0 2014-2015
## 220        779.7       50.2          26.0          6.3      0.0 2014-2015
## 221        765.2       58.1          32.0         53.8      0.0 2014-2015
## 222        751.7       70.2          46.0         75.3      0.0 2014-2015
## 223        761.7       72.0          43.0         30.8      0.0 2014-2015
## 224        785.4       60.3          36.0         28.9      0.0 2014-2015
## 225        753.8       50.8          24.0         54.4      0.0 2014-2015
## 226        788.3       46.7          22.0         30.6      0.0 2014-2015
## 227        752.5       52.6          28.0         51.0      0.0 2014-2015
## 228        768.1       61.6          36.0         29.0      0.0 2014-2015
## 229        780.9       63.5          37.0         54.6      0.0 2014-2015
## 230        776.9       54.6          28.0          6.2      0.0 2014-2015
## 231        790.9       54.8          27.0         30.6      0.0 2014-2015
## 232        782.8       61.2          34.0         30.5      0.0 2014-2015
## 233        772.9       53.1          27.0         31.6      0.0 2014-2015
## 234        813.3       46.5          19.0         33.4      0.0 2014-2015
## 235        772.1       47.4          24.0         31.0      0.0 2014-2015
## 236        766.5       55.7          31.0         53.2      0.0 2014-2015
## 237        774.0       56.3          27.0         54.6      0.0 2014-2015
## 238        776.1       57.1          29.0         31.4      0.0 2014-2015
## 239        766.6       64.0          35.0         31.2      0.0 2014-2015
## 240        778.0       55.5          28.0         57.0      0.0 2014-2015
## 241        776.7       56.0          30.0         55.7      0.0 2014-2015
## 242        816.0       53.9          26.0          6.9      0.0 2014-2015
## 243        799.1       54.6          29.0         31.9      0.0 2014-2015
## 244        789.1       62.3          34.0         56.6      0.0 2014-2015
## 245        784.6       57.7          33.0         30.3      0.0 2014-2015
## 246        803.2       53.9          28.0         32.1      0.0 2014-2015
## 247        795.1       54.3          28.0         82.3      0.0 2014-2015
## 248        778.4       54.6          29.0         31.6      0.0 2014-2015
## 249        793.7       52.6          24.0          6.4      0.0 2014-2015
## 250        789.9       53.6          29.0         33.9      0.0 2014-2015
## 251        782.5       57.3          32.0          5.9      0.0 2014-2015
## 252        788.2       63.3          38.0         80.5      0.0 2014-2015
## 253        771.8       55.7          30.0         75.2      0.0 2014-2015
## 254        840.5       55.8          30.0         32.8      0.0 2014-2015
## 255        810.5       65.5          38.0         58.9      0.0 2014-2015
## 256        796.6       64.5          36.0         81.0      0.0 2014-2015
## 257        839.7       58.7          30.0         88.7      0.0 2014-2015
## 258        842.7       59.4          30.0         32.1      0.0 2014-2015
## 259        359.6       49.7          25.0          6.7      0.0 2014-2015
## 260        364.4       51.9          27.0          5.7      0.0 2014-2015
## 261        367.5       47.6          24.0         28.6      0.0 2014-2015
## 262        366.3       42.7          18.0          6.3      0.0 2014-2015
## 263        357.9       51.1          25.0          6.2      0.0 2014-2015
## 264        367.0       47.1          23.0          5.5      0.0 2014-2015
## 265        362.5       49.2          25.0          5.8      0.0 2014-2015
## 266        360.5       51.4          26.0         51.0      0.0 2014-2015
## 267        368.0       49.0          24.0          5.8      0.0 2014-2015
## 268        367.7       49.7          26.0          5.6      0.0 2014-2015
## 269        366.4       51.4          26.0         28.7      0.0 2014-2015
## 270        366.9       50.7          27.0          5.6      0.0 2014-2015
## 271        364.0       51.1          26.0         28.8      0.0 2014-2015
## 272        367.8       47.2          21.0         30.6      0.0 2014-2015
## 273        359.7       52.2          28.0          5.9      0.0 2014-2015
## 274        371.9       53.2          28.0         28.9      0.0 2014-2015
## 275        363.9       50.7          28.0          5.7      0.0 2014-2015
## 276        370.9       47.4          24.0          5.5      0.0 2014-2015
## 277        370.1       51.6          26.0         29.4      0.0 2014-2015
## 278        365.3       51.2          27.0         29.7      0.0 2014-2015
## 279        375.9       54.8          32.0          5.6      0.0 2014-2015
## 280        368.1       48.7          25.0          7.3      0.0 2014-2015
## 281        395.8       51.0          27.0          6.2      0.0 2014-2015
## 282        372.6       55.4          30.0          5.7      0.0 2014-2015
## 283        368.0       52.1          25.0          5.7      0.0 2014-2015
## 284        365.9       48.7          23.0          6.8      0.0 2014-2015
## 285        367.3       43.9          22.0         28.9      0.0 2014-2015
## 286        376.9       52.0          27.0          6.1      0.0 2014-2015
## 287        368.8       54.6          32.0         28.7      0.0 2014-2015
## 288        365.8       47.5          23.0         31.4      0.0 2014-2015
## 289        380.2       48.7          24.0         28.9      0.0 2014-2015
## 290        375.3       49.2          25.0         53.6      0.0 2014-2015
## 291        362.8       47.8          21.0         31.3      0.0 2014-2015
## 292        376.1       51.7          26.0          5.9      0.0 2014-2015
## 293        373.2       52.8          28.0          5.9      0.0 2014-2015
## 294        370.2       52.3          27.0          5.6      0.0 2014-2015
## 295        363.9       49.6          25.0         72.6      0.0 2014-2015
## 296        367.5       49.2          25.0         29.4      0.0 2014-2015
## 297        372.0       52.9          28.0         80.6      0.0 2014-2015
## 298        361.6       52.4          28.0         29.0      0.0 2014-2015
## 299        369.5       49.6          26.0         49.4      0.0 2014-2015
## 300        363.8       59.1          31.0         31.4      0.0 2014-2015
## 301        368.1       49.2          33.0         76.8      0.0 2014-2015
## 302        382.2       53.0          28.0         31.9      0.0 2014-2015
## 303        392.0       42.7          19.0          6.2      0.0 2014-2015
## 304        377.7       51.8          27.0         76.1      0.0 2014-2015
## 305        380.6       51.6          28.0         54.4      0.0 2014-2015
## 306        372.2       55.8          72.0        125.9      0.0 2014-2015
## 307        396.0       51.6          27.0         56.7      0.0 2014-2015
## 308        387.2       51.2          28.0         32.8      0.0 2014-2015
## 309        360.6       74.3          76.0        115.0      0.0 2014-2015
## 310        396.7       56.7          31.0         57.3      0.0 2014-2015
## 311        388.9       51.0          26.0         54.0      0.0 2014-2015
## 312        393.7       51.7          27.0         30.8      0.0 2014-2015
## 313        406.3       51.7          27.0         57.7      0.0 2014-2015
## 314        423.9       49.8          23.0         34.3      0.0 2014-2015
## 315        448.9       40.0          21.5          6.8      0.0 2014-2015
## 316        452.0       41.3          25.7          6.7      0.0 2014-2015
## 317        442.4       48.5          30.2         27.0      0.0 2014-2015
## 318        443.8       51.7          34.2          6.6      0.0 2014-2015
## 319        458.2       40.1          22.6          7.1      0.0 2014-2015
## 320        445.1       47.5          31.5         26.9      0.0 2014-2015
## 321        455.0       50.3          32.4          6.9      0.0 2014-2015
## 322        451.1       46.8          27.4          6.9      0.0 2014-2015
## 323        461.4       41.0          24.1          6.8      0.0 2014-2015
## 324        458.6       53.6          35.5         25.8      0.0 2014-2015
## 325        457.6       45.3          28.9         27.8      0.0 2014-2015
## 326        464.8       41.9          23.5          6.8      0.0 2014-2015
## 327        456.3       42.6          22.9         28.1      0.0 2014-2015
## 328        468.3       42.5          23.6          7.2      0.0 2014-2015
## 329        447.9       49.8          31.0         26.9      0.0 2014-2015
## 330        457.6       41.7          26.4         47.6      0.0 2014-2015
## 331        460.6       43.6          24.9         28.9      0.0 2014-2015
## 332        448.3       46.5          28.3         46.2      0.0 2014-2015
## 333        452.3       47.6          29.6         48.4      0.0 2014-2015
## 334        465.0       46.6          30.5          6.8      0.0 2014-2015
## 335        459.0       46.8          28.3         28.5      0.0 2014-2015
## 336        462.2       50.9          34.6         48.0      0.0 2014-2015
## 337        462.6       40.8          22.2         27.3      0.0 2014-2015
## 338        475.0       42.3          22.9          7.4      0.0 2014-2015
## 339        460.1       42.5          23.3         28.1      0.0 2014-2015
## 340        459.0       44.0          28.5         50.6      0.0 2014-2015
## 341        459.8       52.0          35.4         28.2      0.0 2014-2015
## 342        475.7       49.9          31.9          6.7      0.0 2014-2015
## 343        470.8       53.7          35.2          7.2      0.0 2014-2015
## 344        467.5       46.4          29.2         28.3      0.0 2014-2015
## 345        470.7       44.8          25.0          7.3      0.0 2014-2015
## 346        468.4       44.4          26.5         29.1      0.0 2014-2015
## 347        457.5       40.2          24.5         27.8      0.0 2014-2015
## 348        456.2       47.4          30.7         48.0      0.0 2014-2015
## 349        459.6       47.6          28.7         28.4      0.0 2014-2015
## 350        464.9       41.9          22.9          6.7      0.0 2014-2015
## 351        452.3       43.6          25.1         29.5      0.0 2014-2015
## 352        459.1       42.0          24.2          7.1      0.0 2014-2015
## 353        459.4       49.1          32.0         28.0      0.0 2014-2015
## 354        465.7       42.6          23.1          7.1      0.0 2014-2015
## 355        464.6       46.0          31.7         51.0      0.0 2014-2015
## 356        467.1       45.4          27.1         28.0      0.0 2014-2015
## 357        474.4       37.3          18.9         51.5      0.0 2014-2015
## 358        450.1       48.4          30.9         29.4      0.0 2014-2015
## 359        472.5       49.0          29.3         27.1      0.0 2014-2015
## 360        457.2       47.0          26.4          7.6      0.0 2014-2015
## 361        486.8       39.9          21.8          7.1      0.0 2014-2015
## 362        465.0       40.1          21.6         27.6      0.0 2014-2015
## 363        475.2       51.7          29.9         29.2      0.0 2014-2015
## 364        471.8       41.0          24.4         47.7      0.0 2014-2015
## 365        467.2       43.9          27.0         49.9      0.0 2014-2015
## 366        471.8       46.4          27.4         28.1      0.0 2014-2015
## 367        479.4       46.3          26.7         28.4      0.0 2014-2015
## 368        471.3       49.0          31.0         47.9      0.0 2014-2015
## 369        460.4       44.6          28.3         69.7      0.0 2014-2015
## 370        470.1       48.1          27.0         48.8      0.0 2014-2015
## 371        460.8       47.6          28.3         47.5      0.0 2014-2015
## 372        468.2       48.2          29.4         52.2      0.0 2014-2015
## 373        461.6       39.9          20.4         30.3      0.0 2014-2015
## 374        477.4       42.7          23.3          6.7      0.0 2014-2015
## 375        479.8       41.4          25.2         27.7      0.0 2014-2015
## 376        473.2       45.1          27.1         49.4      0.0 2014-2015
## 377        486.2       59.2          39.6          6.8      0.0 2014-2015
## 378        476.1       45.4          26.9          6.7      0.0 2014-2015
## 379        463.4       55.8          36.5         29.2      0.0 2014-2015
## 380        476.7       44.0          27.1         28.5      0.0 2014-2015
## 381        486.8       47.0          27.6         29.2      0.0 2014-2015
## 382        458.8       43.6          26.6         72.1      0.0 2014-2015
## 383        476.6       44.2          24.6         28.6      0.0 2014-2015
## 384        481.6       41.7          25.1         28.6      0.0 2014-2015
## 385        490.1       48.7          28.4          7.0      0.0 2014-2015
## 386        466.1       57.5          39.7         74.7      0.0 2014-2015
## 387        488.4       40.8          23.7          7.5      0.0 2014-2015
## 388        497.6       39.8          19.4          7.6      0.0 2014-2015
## 389        490.8       40.4          20.3          7.6      0.0 2014-2015
## 390        509.3       41.1          24.0          7.2      0.0 2014-2015
## 391        483.0       56.6          38.1         29.5      0.0 2014-2015
## 392        487.1       51.7          30.6         54.3      0.0 2014-2015
## 393        491.6       42.4          21.1         31.6      0.0 2014-2015
## 394        480.3       39.4          23.1         52.2      0.0 2014-2015
## 395        507.3       50.7          29.7          7.7      0.0 2014-2015
## 396        495.1       52.4          35.9         50.5      0.0 2014-2015
## 397        477.6       49.2          27.7        101.3      0.0 2014-2015
## 398        462.2       53.2          35.1        191.1      0.0 2014-2015
## 399        503.7       48.0          31.9         53.0      0.0 2014-2015
## 400        503.4       56.1          37.8         76.0      0.0 2014-2015
## 401        499.5       94.6          74.4         74.3      0.0 2014-2015
## 402        521.8       60.2          40.0        101.7      0.0 2014-2015
## 403        420.5       43.4            NA          6.9      0.0 2014-2015
## 404        410.1       38.7            NA          6.8      0.0 2014-2015
## 405        423.3       40.8            NA          7.2      0.0 2014-2015
## 406        417.5       40.0            NA          7.4      0.0 2014-2015
## 407        417.5       39.0            NA          7.9      0.0 2014-2015
## 408        416.6       44.1            NA          7.6      0.0 2014-2015
## 409        422.0       44.1            NA         28.6      0.0 2014-2015
## 410        424.4       42.8            NA          7.5      0.0 2014-2015
## 411        425.9       37.4            NA         29.3      0.0 2014-2015
## 412        418.3       42.2            NA          7.2      0.0 2014-2015
## 413        413.5       48.7            NA          6.9      0.0 2014-2015
## 414        411.9       39.6            NA         50.0      0.0 2014-2015
## 415        427.2       48.4            NA         29.6      0.0 2014-2015
## 416        426.0       45.2            NA         29.9      0.0 2014-2015
## 417        434.3       45.2            NA          7.3      0.0 2014-2015
## 418        420.9       41.8            NA          7.1      0.0 2014-2015
## 419        418.5       42.9            NA         28.5      0.0 2014-2015
## 420        427.2       40.1            NA         29.2      0.0 2014-2015
## 421        422.3       48.5            NA         29.1      0.0 2014-2015
## 422        438.4       35.0            NA         31.4      0.0 2014-2015
## 423        431.3       43.4            NA          7.2      0.0 2014-2015
## 424        414.6       47.4            NA         96.8      0.0 2014-2015
## 425        427.8       45.8            NA         29.6      0.0 2014-2015
## 426        432.9       40.3            NA         30.6      0.0 2014-2015
## 427        446.5       46.4            NA          7.4      0.0 2014-2015
## 428        428.4       41.7            NA          7.0      0.0 2014-2015
## 429        432.9       44.1            NA         56.5      0.0 2014-2015
## 430        436.7       38.4            NA          7.1      0.0 2014-2015
## 431        417.9       44.1            NA         99.5      0.0 2014-2015
## 432        439.3       43.5            NA         51.6      0.0 2014-2015
## 433        343.8       41.3          23.1         28.9      0.0 2014-2015
## 434        346.1       46.3          28.8         28.3      0.0 2014-2015
## 435        344.5       48.8          30.0         51.3      0.0 2014-2015
## 436        337.9       50.0          31.3         51.1      0.0 2014-2015
## 437        347.0       49.3          30.8         29.9      0.0 2014-2015
## 438        346.9       47.9          32.0         51.7      0.0 2014-2015
## 439        358.9       56.9          40.1          7.4      0.0 2014-2015
## 440        341.1       48.7          31.0         71.2      0.0 2014-2015
## 441        341.9       51.2          33.7          7.0      0.0 2014-2015
## 442        348.8       40.3          23.7          6.8      0.0 2014-2015
## 443        353.7       54.7          36.7         51.1      0.0 2014-2015
## 444        353.0       40.6          25.3          6.8      0.0 2014-2015
## 445        349.4       59.0          41.7         30.0      0.0 2014-2015
## 446        346.0       56.4          39.9         28.0      0.0 2014-2015
## 447        353.1       50.4          32.5         29.4      0.0 2014-2015
## 448        341.3       50.2          30.7         28.7      0.0 2014-2015
## 449        353.7       43.1          25.0          7.2      0.0 2014-2015
## 450        354.6       46.0          30.3          6.8      0.0 2014-2015
## 451        341.6       44.3          25.9         51.3      0.0 2014-2015
## 452        363.1       54.9          38.4         29.8      0.0 2014-2015
## 453        336.0       47.2          30.5         52.4      0.0 2014-2015
## 454        351.2       42.2          24.8         30.6      0.0 2014-2015
## 455        358.4       42.9          25.8          7.1      0.0 2014-2015
## 456        359.3       48.8          29.2          7.5      0.0 2014-2015
## 457        354.4       53.4          36.9         77.9      0.0 2014-2015
## 458        354.5       42.8          26.4         29.9      0.0 2014-2015
## 459        364.7       38.3          21.2          7.7      0.0 2014-2015
## 460        342.8       50.7          32.3         52.5      0.0 2014-2015
## 461        354.7       48.0          30.8         56.0      0.0 2014-2015
## 462        352.0       48.5          28.7         54.4      0.0 2014-2015
## 463        347.9       57.1          39.9         98.4      0.0 2014-2015
## 464        351.1       48.7          26.9          7.1      0.0 2014-2015
## 465        348.7       44.9          28.6         30.0      0.0 2014-2015
## 466        359.4       42.9          25.2         54.7      0.0 2014-2015
## 467        361.7       42.7          22.9         54.7      0.0 2014-2015
## 468        355.1       42.4          22.6         54.6      0.0 2014-2015
## 469        361.0       49.1          29.4         56.3      0.0 2014-2015
## 470        361.0       48.5          32.0         30.9      0.0 2014-2015
## 471        358.0       45.5          26.2         78.5      0.0 2014-2015
## 472        356.8       46.2          28.6         30.5      0.0 2014-2015
## 473        375.7       47.1          30.0         32.6      0.0 2014-2015
## 474        351.1       55.1          36.5          7.1      0.0 2014-2015
## 475        352.3       41.6          26.4          6.7      0.0 2014-2015
## 476        365.0       50.5          31.1          7.2      0.0 2014-2015
## 477        360.1       40.8          22.0         54.5      0.0 2014-2015
## 478        360.3       62.7          44.3         33.3      0.0 2014-2015
## 479        377.7       52.0          31.8         32.4      0.0 2014-2015
## 480        368.7       58.6          41.1         31.1      0.0 2014-2015
## 481        363.8       52.3          35.2         83.9      0.0 2014-2015
## 482        374.2       45.6          26.9          7.5      0.0 2014-2015
## 483        370.7       47.2          30.2          7.6      0.0 2014-2015
## 484        379.3       49.1          34.5          7.4      0.0 2014-2015
## 485        360.3       49.7          32.5         52.1      0.0 2014-2015
## 486        367.5       46.4          27.3         55.4      0.0 2014-2015
## 487        374.6       41.2          21.5         79.0      0.0 2014-2015
## 488        454.2       44.1          23.7         29.4      0.0 2014-2015
## 489        453.4       44.9          23.9         29.4      0.0 2014-2015
## 490        478.6       42.4          21.8          7.2      0.0 2014-2015
## 491        460.7       58.0          34.6         28.3      0.0 2014-2015
## 492        453.9       53.9          33.0         29.6      0.0 2014-2015
## 493        450.1       50.9          27.4         51.1      0.0 2014-2015
## 494        445.6       53.6          35.1         28.3      0.0 2014-2015
## 495        457.2       48.4          28.1          7.5      0.0 2014-2015
## 496        465.4       58.6          39.8         31.3      0.0 2014-2015
## 497        462.4       46.6          26.7         50.7      0.0 2014-2015
## 498        472.5       48.5          25.9          7.8      0.0 2014-2015
## 499        454.1       44.8          23.8         76.2      0.0 2014-2015
## 500        457.8       55.8          32.8         31.0      0.0 2014-2015
## 501        461.4       45.4          25.7         49.9      0.0 2014-2015
## 502        462.1       51.7          34.2         28.6      0.0 2014-2015
## 503        458.0       57.6          35.5         50.5      0.0 2014-2015
## 504        466.3       46.8          24.7         30.6      0.0 2014-2015
## 505        459.9       62.6          42.0         28.9      0.0 2014-2015
## 506        459.7       47.3          27.6         51.0      0.0 2014-2015
## 507        453.7       57.6          32.9         74.9      0.0 2014-2015
## 508        476.5       49.7          28.5         30.0      0.0 2014-2015
## 509        481.8       41.1          19.6          7.3      0.0 2014-2015
## 510        466.7       47.0          27.0         28.0      0.0 2014-2015
## 511        471.8       50.2          29.6         47.3      0.0 2014-2015
## 512        468.3       49.2          28.7         31.3      0.0 2014-2015
## 513        457.3       57.7          36.7         51.9      0.0 2014-2015
## 514        463.8       51.1          25.7         52.9      0.0 2014-2015
## 515        464.5       55.6          33.4         52.5      0.0 2014-2015
## 516        472.8       49.7          26.9         30.8      0.0 2014-2015
## 517        451.6       70.1          50.5         53.3      0.0 2014-2015
## 518        468.9       49.8          29.1          8.6      0.0 2014-2015
## 519        471.1       47.2          26.5         30.0      0.0 2014-2015
## 520        474.3       66.0          46.9         30.0      0.0 2014-2015
## 521        468.8       42.8          22.0          7.6      0.0 2014-2015
## 522        474.9       62.2          40.2          7.7      0.0 2014-2015
## 523        451.4       53.1          32.8         53.4      0.0 2014-2015
## 524        476.4       53.3          32.6         31.4      0.0 2014-2015
## 525        451.7       78.8          56.2         54.5      0.0 2014-2015
## 526        477.6       56.8          36.0         31.7      0.0 2014-2015
## 527        470.7       54.6          31.5         74.4      0.0 2014-2015
## 528        476.2       48.7          27.5         29.4      0.0 2014-2015
## 529        470.4       45.4          25.2         52.2      0.0 2014-2015
## 530        464.6       53.7          29.2         29.9      0.0 2014-2015
## 531        459.6       50.4          30.7         51.1      0.0 2014-2015
## 532        471.7       60.3          39.5         78.4      0.0 2014-2015
## 533        476.1       56.8          34.4         50.6      0.0 2014-2015
## 534        457.2       52.3          29.0         79.3      0.0 2014-2015
## 535        472.0       46.9          25.1         32.9      0.0 2014-2015
## 536        474.6       52.6          31.3         30.6      0.0 2014-2015
## 537        479.5       57.2          33.5         29.7      0.0 2014-2015
## 538        496.2       49.1          25.4         32.2      0.0 2014-2015
## 539        474.5       75.6          48.0         74.7      0.0 2014-2015
## 540        473.8       54.9          30.8         54.0      0.0 2014-2015
## 541        480.0       64.1          41.4         31.2      0.0 2014-2015
## 542        479.6       47.1          26.1         30.4      0.0 2014-2015
## 543        488.2       71.1          49.9         31.1      0.0 2014-2015
## 544        484.6       48.3          25.3         57.1      0.0 2014-2015
## 545        492.0       62.8          39.5         55.6      0.0 2014-2015
## 546        475.7       53.3          31.2         52.2      0.0 2014-2015
## 547        490.1       63.3          40.7         54.8      0.0 2014-2015
## 548        489.9       68.2          46.3         53.6      0.0 2014-2015
## 549        470.4       74.1          53.7         77.2      0.0 2014-2015
## 550        490.7       57.8          35.6         33.3      0.0 2014-2015
## 551        463.9       47.5          25.9         55.8      0.0 2014-2015
## 552        486.9       59.9          38.7         56.8      0.0 2014-2015
## 553        475.0       65.9          44.0        100.6      0.0 2014-2015
## 554        485.3       64.9          42.7         54.0      0.0 2014-2015
## 555        494.8       70.0          48.3         55.9      0.0 2014-2015
## 556        485.5       67.2          45.1         54.7      0.0 2014-2015
## 557        482.7       61.5          36.7         56.0      0.0 2014-2015
## 558        481.6       51.8          28.2        106.4      0.0 2014-2015
## 559        475.5       62.3          42.5        100.4      0.0 2014-2015
## 560        491.6       60.2          36.8         56.9      0.0 2014-2015
## 561        482.3       67.1          46.3         77.4      0.0 2014-2015
## 562        491.1       52.0          28.0         58.9      0.0 2014-2015
## 563        496.0       52.1          29.3         33.2      0.0 2014-2015
## 564        465.7       64.2          40.3         78.8      0.0 2014-2015
## 565        478.3       52.9          32.3         76.9      0.0 2014-2015
## 566        497.5       54.2          29.2         56.0      0.0 2014-2015
## 567        498.1       47.5          23.9         54.3      0.0 2014-2015
## 568        518.0       64.8          41.7         32.1      0.0 2014-2015
## 569        510.5       50.4          28.1         56.8      0.0 2014-2015
## 570        479.3       75.1          50.8         78.3      0.0 2014-2015
## 571        496.4       65.4          39.4         53.5      0.0 2014-2015
## 572        486.0       52.8          29.6        102.4      0.0 2014-2015
## 573        518.7       47.8          20.6         59.7      0.0 2014-2015
## 574        511.9       62.1          39.4         83.2      0.0 2014-2015
## 575        499.8       84.4          62.2        101.8      0.0 2014-2015
## 576        486.0       55.9          32.8         55.2      0.0 2014-2015
## 577        490.0       58.0          32.9        113.1      0.0 2014-2015
## 578        517.4       54.0          31.3         58.4      0.0 2014-2015
## 579        513.9       58.4          37.3         57.0      0.0 2014-2015
## 580        505.8       65.7          39.7         84.6      0.0 2014-2015
## 581        507.1       56.3          33.5         85.3      0.0 2014-2015
## 582        511.3       73.9          47.3         83.3      0.0 2014-2015
## 583        478.6       89.6          64.4        102.0      0.0 2014-2015
## 584        520.5       52.0          28.5         58.3      0.0 2014-2015
## 585        519.3       63.2          35.1         55.9      0.0 2014-2015
## 586        539.7       67.7          39.7          8.6      0.0 2014-2015
## 587        530.0       72.8          47.5         35.4      0.0 2014-2015
## 588        500.8       63.4          40.7        106.6      0.0 2014-2015
## 589        536.1       71.2          46.3         59.1      0.0 2014-2015
## 590        499.3       64.0          41.8        140.5      0.0 2014-2015
## 591        556.9       58.0          31.8         33.7      0.0 2014-2015
## 592        518.1       70.9          47.1        115.1      0.0 2014-2015
## 593        538.9      115.9          91.5         35.9      0.0 2014-2015
## 594        540.8       72.6          50.9         87.0      0.0 2014-2015
## 595        516.1       73.1          47.6         88.7      0.0 2014-2015
## 596        539.8       73.7          49.0         34.6      0.0 2014-2015
## 597        520.2       83.9          59.0         35.1      0.0 2014-2015
## 598        565.3       61.5          36.2         64.9      0.0 2014-2015
## 599        547.5       64.9          38.8         94.8      0.0 2014-2015
## 600        501.6       59.6          37.5        230.4      0.0 2014-2015
## 601        566.5       65.5          43.3         88.5      0.0 2014-2015
## 602        543.2       89.8          64.6         60.5      0.0 2014-2015
## 603        571.9       76.0          52.7         65.7      0.0 2014-2015
## 604        555.1       65.2          36.9         36.9      0.0 2014-2015
## 605        538.8       76.7          53.5        142.1      0.0 2014-2015
## 606        541.1       70.8          44.5         90.6      0.0 2014-2015
## 607        543.1       85.6          57.8         94.4      0.0 2014-2015
## 608        529.6       46.7            NA          0.0   2281.8 2014-2015
## 609        547.7       54.9            NA          0.0   2345.3 2014-2015
## 610        534.1       50.6            NA          0.0   2313.5 2014-2015
## 611        545.3       52.8            NA          0.0   2359.6 2014-2015
## 612        540.7       48.1            NA          0.0   2326.2 2014-2015
## 613        553.2       44.8            NA          0.0   2326.8 2014-2015
## 614        542.0       47.8            NA          0.0   2342.3 2014-2015
## 615        532.7       49.5            NA          0.0   2302.3 2014-2015
## 616        572.0       49.6            NA          0.0   2404.3 2014-2015
## 617        541.7       63.2            NA         60.0   2324.9 2014-2015
## 618        541.3       49.1            NA         60.0   2315.1 2014-2015
## 619        551.4       50.8            NA          0.0   2361.5 2014-2015
## 620        560.7       42.2            NA         60.0   2389.6 2014-2015
## 621        524.9       52.7            NA         60.0   2280.2 2014-2015
## 622        545.1       49.4            NA          0.0   2385.7 2014-2015
## 623        534.8       53.2            NA         60.0   2335.8 2014-2015
## 624        565.2       62.8            NA          0.0   2430.9 2014-2015
## 625        563.3       53.3            NA         60.0   2376.5 2014-2015
## 626        537.0       53.6            NA          0.0   2351.3 2014-2015
## 627        534.5       49.2            NA         60.0   2312.0 2014-2015
## 628        558.8       50.5            NA          0.0   2432.8 2014-2015
## 629        541.5       56.5            NA        120.0   2325.5 2014-2015
## 630        537.0       52.3            NA          0.0   2332.5 2014-2015
## 631        546.9       51.8            NA          0.0   2385.4 2014-2015
## 632        558.7       50.2            NA         60.0   2388.1 2014-2015
## 633        563.1       56.1            NA          0.0   2437.0 2014-2015
## 634        542.8       51.2            NA        120.0   2341.1 2014-2015
## 635        555.2       57.9            NA         60.0   2396.8 2014-2015
## 636        557.5       54.1            NA        120.0   2413.7 2014-2015
## 637        550.1       56.4            NA         60.0   2367.5 2014-2015
## 638        547.2       50.2            NA        120.0   2329.6 2014-2015
## 639        564.0       63.5            NA        120.0   2425.1 2014-2015
## 640        553.8       48.4            NA         60.0   2360.5 2014-2015
## 641        545.2       51.6            NA         60.0   2368.0 2014-2015
## 642        545.4       48.2            NA        120.0   2328.7 2014-2015
## 643        554.3       58.4            NA        120.0   2388.3 2014-2015
## 644        561.2       53.9            NA          0.0   2385.7 2014-2015
## 645        556.2       61.6            NA        120.0   2398.7 2014-2015
## 646        571.1       59.7            NA         60.0   2425.8 2014-2015
## 647        559.9       50.8            NA          0.0   2393.0 2014-2015
## 648        552.5       48.4            NA         60.0   2390.8 2014-2015
## 649        553.5       48.7            NA         60.0   2409.6 2014-2015
## 650        590.7       68.7            NA          0.0   2557.8 2014-2015
## 651        546.1       47.8            NA        120.0   2323.1 2014-2015
## 652        560.8       55.9            NA          0.0   2434.8 2014-2015
## 653        569.6       54.1            NA          0.0   2476.8 2014-2015
## 654        563.5       51.1            NA          0.0   2441.5 2014-2015
## 655        533.2       51.9            NA         60.0   2334.2 2014-2015
## 656        582.8       59.3            NA        120.0   2483.1 2014-2015
## 657        551.7       55.3            NA        120.0   2350.3 2014-2015
## 658        567.7       60.1            NA         60.0   2440.2 2014-2015
## 659        582.0       52.5            NA          0.0   2500.3 2014-2015
## 660        581.8       52.6            NA         60.0   2499.1 2014-2015
## 661        554.2       49.6            NA        120.0   2359.0 2014-2015
## 662        569.4       55.7            NA         60.0   2463.8 2014-2015
## 663        592.4       49.6            NA          0.0   2505.2 2014-2015
## 664        595.1       48.3            NA          0.0   2482.9 2014-2015
## 665        575.1       47.4            NA          0.0   2405.8 2014-2015
## 666        570.5       53.6            NA          0.0   2417.1 2014-2015
## 667        584.9       53.5            NA        120.0   2488.2 2014-2015
## 668        566.3       53.0            NA        120.0   2391.2 2014-2015
## 669        549.8       48.0            NA         60.0   2374.1 2014-2015
## 670        561.7       55.6            NA         60.0   2438.8 2014-2015
## 671        575.2       58.7            NA        120.0   2445.7 2014-2015
## 672        576.6       50.5            NA          0.0   2484.5 2014-2015
## 673        582.3       64.7            NA          0.0   2500.1 2014-2015
## 674        539.1       54.7            NA        120.0   2346.6 2014-2015
## 675        594.5       48.5            NA         60.0   2473.4 2014-2015
## 676        566.7       56.3            NA          0.0   2453.8 2014-2015
## 677        596.5       51.9            NA         60.0   2543.5 2014-2015
## 678        584.2       57.7            NA         60.0   2490.5 2014-2015
## 679        578.6       60.5            NA         60.0   2502.8 2014-2015
## 680        560.2       52.4            NA          0.0   2415.1 2014-2015
## 681        575.0       47.1            NA         60.0   2457.2 2014-2015
## 682        575.9       51.3            NA         60.0   2407.1 2014-2015
## 683        603.7       61.9            NA        120.0   2572.0 2014-2015
## 684        576.0       57.6            NA        120.0   2481.8 2014-2015
## 685        595.7       57.8            NA          0.0   2580.7 2014-2015
## 686        574.9       55.6            NA         60.0   2421.4 2014-2015
## 687        614.9       66.8            NA         60.0   2605.8 2014-2015
## 688        577.7       72.4            NA        120.0   2500.6 2014-2015
## 689        567.7       50.2            NA          0.0   2494.1 2014-2015
## 690        586.6       52.0            NA         60.0   2496.0 2014-2015
## 691        620.3       62.9            NA          0.0   2640.6 2014-2015
## 692        571.9       57.4            NA         60.0   2467.5 2014-2015
## 693        590.8       62.1            NA        120.0   2492.3 2014-2015
## 694        582.5       60.5            NA         60.0   2474.9 2014-2015
## 695        575.6       52.9            NA        120.0   2429.2 2014-2015
## 696        604.1       58.4            NA          0.0   2583.4 2014-2015
## 697        595.3       64.8            NA        180.0   2555.4 2014-2015
## 698        559.5       48.5            NA        120.0   2401.0 2014-2015
## 699        575.4       54.7            NA        120.0   2458.0 2014-2015
## 700        581.5       56.7            NA        180.0   2464.6 2014-2015
## 701        633.7       79.0            NA         60.0   2731.2 2014-2015
## 702        603.1       54.9            NA          0.0   2587.5 2014-2015
## 703        610.8       63.1            NA         60.0   2595.1 2014-2015
## 704        569.9       55.8            NA         60.0   2458.7 2014-2015
## 705        599.6       57.2            NA         60.0   2570.8 2014-2015
## 706        590.2       57.8            NA        180.0   2520.2 2014-2015
## 707        626.2       76.0            NA         60.0   2744.5 2014-2015
## 708        588.2       58.3            NA          0.0   2552.0 2014-2015
## 709        600.5       57.8            NA        120.0   2552.2 2014-2015
## 710        596.0       63.2            NA        180.0   2536.7 2014-2015
## 711        602.6       59.9            NA         60.0   2592.5 2014-2015
## 712        618.0       72.4            NA        180.0   2655.2 2014-2015
## 713        575.4       55.3            NA        180.0   2469.1 2014-2015
## 714        631.9       53.6            NA          0.0   2724.3 2014-2015
## 715        585.6       66.6            NA        120.0   2551.6 2014-2015
## 716        595.0       50.4            NA        120.0   2522.1 2014-2015
## 717        617.5       60.2            NA        120.0   2660.8 2014-2015
## 718        665.4       61.0            NA         60.0   2847.3 2014-2015
## 719        587.0       61.5            NA        180.0   2519.9 2014-2015
## 720        639.6       53.5            NA         60.0   2713.6 2014-2015
## 721        619.1       52.7            NA        120.0   2620.8 2014-2015
## 722        614.2       60.0            NA          0.0   2690.4 2014-2015
## 723        594.1       59.7            NA        120.0   2581.1 2014-2015
## 724        628.6       56.8            NA        180.0   2668.0 2014-2015
## 725        654.0       57.8            NA         60.0   2818.6 2014-2015
## 726        607.0       64.2            NA        300.0   2576.9 2014-2015
## 727        625.0       57.6            NA        120.0   2655.9 2014-2015
## 728        393.5       43.8          23.3          6.8      0.0 2014-2015
## 729        405.5       46.0          23.8          7.3      0.0 2014-2015
## 730        393.3       40.0          22.2          6.7      0.0 2014-2015
## 731        413.4       41.5          20.6          7.3      0.0 2014-2015
## 732        385.6       45.4          25.0          6.4      0.0 2014-2015
## 733        389.8       42.0          19.9          6.9      0.0 2014-2015
## 734        392.7       39.8          18.5          6.9      0.0 2014-2015
## 735        398.4       42.3          22.1          6.7      0.0 2014-2015
## 736        413.1       40.4          18.2         27.4      0.0 2014-2015
## 737        388.6       39.5          16.8         26.1      0.0 2014-2015
## 738        397.3       42.5          22.0         28.5      0.0 2014-2015
## 739        402.1       49.9          28.6          6.9      0.0 2014-2015
## 740        404.6       50.9          28.9          6.4      0.0 2014-2015
## 741        399.0       45.4          24.9         26.2      0.0 2014-2015
## 742        387.2       43.8          23.0         29.4      0.0 2014-2015
## 743        399.4       49.8          28.3         27.4      0.0 2014-2015
## 744        397.4       46.8          26.3          6.8      0.0 2014-2015
## 745        402.7       42.9          20.3         26.6      0.0 2014-2015
## 746        410.3       45.5          23.1         49.4      0.0 2014-2015
## 747        407.1       58.2          37.5         28.1      0.0 2014-2015
## 748        415.8       50.1          27.0         26.6      0.0 2014-2015
## 749        405.6       44.1          24.9          6.6      0.0 2014-2015
## 750        415.8       42.6          21.1          6.7      0.0 2014-2015
## 751        405.2       48.2          25.5         27.8      0.0 2014-2015
## 752        404.5       46.9          25.4         27.5      0.0 2014-2015
## 753        420.3       43.9          22.3         30.5      0.0 2014-2015
## 754        407.1       44.2          25.0         29.0      0.0 2014-2015
## 755        421.4       45.3          26.5          7.0      0.0 2014-2015
## 756        419.1       43.4          23.1         28.9      0.0 2014-2015
## 757        422.5       47.0          27.2         51.6      0.0 2014-2015
## 758        327.9       47.5          27.3          7.3      0.0 2014-2015
## 759        322.6       45.6          24.5          6.6      0.0 2014-2015
## 760        331.0       44.2          22.6          7.5      0.0 2014-2015
## 761        325.9       50.9          28.6          6.7      0.0 2014-2015
## 762        324.2       43.9          22.8         27.2      0.0 2014-2015
## 763        327.5       47.2          26.7         28.4      0.0 2014-2015
## 764        324.7       39.6          20.2         28.9      0.0 2014-2015
## 765        323.9       47.2          26.4          6.9      0.0 2014-2015
## 766        328.9       47.8          27.6          6.9      0.0 2014-2015
## 767        328.4       44.1          24.2         50.8      0.0 2014-2015
## 768        328.7       43.5          23.7          6.5      0.0 2014-2015
## 769        322.9       42.2          22.0          6.9      0.0 2014-2015
## 770        325.2       45.1          23.9         27.8      0.0 2014-2015
## 771        322.5       46.8          24.7         28.7      0.0 2014-2015
## 772        320.2       46.5          25.2         28.0      0.0 2014-2015
## 773        337.5       46.9          27.1         27.5      0.0 2014-2015
## 774        327.8       51.9          31.4         28.6      0.0 2014-2015
## 775        329.7       43.4          23.9          6.9      0.0 2014-2015
## 776        320.9       46.9          24.5         28.7      0.0 2014-2015
## 777        334.8       46.2          26.5         48.5      0.0 2014-2015
## 778        322.3       47.0          25.7         28.9      0.0 2014-2015
## 779        326.2       45.1          24.8         28.8      0.0 2014-2015
## 780        341.8       43.8          24.5         49.2      0.0 2014-2015
## 781        328.6       46.9          27.5         27.5      0.0 2014-2015
## 782        327.1       44.1          23.1          7.6      0.0 2014-2015
## 783        332.4       45.5          25.2          8.0      0.0 2014-2015
## 784        332.9       46.6          27.2          7.2      0.0 2014-2015
## 785        322.0       50.5          30.4         70.0      0.0 2014-2015
## 786        329.1       52.9          30.7         52.4      0.0 2014-2015
## 787        326.4       53.9          36.2         29.0      0.0 2014-2015
## 788        334.3       43.4          21.6         52.5      0.0 2014-2015
## 789        340.0       46.8          26.8         30.8      0.0 2014-2015
## 790        330.6       43.6          21.4         29.3      0.0 2014-2015
## 791        331.0       46.5          24.9         29.6      0.0 2014-2015
## 792        333.4       44.8          26.7         48.9      0.0 2014-2015
## 793        343.0       47.0          24.0         29.7      0.0 2014-2015
## 794        319.5       46.2          27.0         50.4      0.0 2014-2015
## 795        330.8       46.2          26.8         29.3      0.0 2014-2015
## 796        324.3       51.0          30.1         77.8      0.0 2014-2015
## 797        334.9       45.6          24.6         51.5      0.0 2014-2015
## 798        337.9       55.7          34.4         74.8      0.0 2014-2015
## 799        338.6       43.4          24.6         30.0      0.0 2014-2015
## 800        343.1       44.1          22.9         29.7      0.0 2014-2015
## 801        336.6       48.1          27.4         30.1      0.0 2014-2015
## 802        335.7       44.0          24.0         29.8      0.0 2014-2015
## 803        326.9       53.7          28.5         29.9      0.0 2014-2015
## 804        337.4       47.5          27.4         52.0      0.0 2014-2015
## 805        329.8       45.2          22.4         52.5      0.0 2014-2015
## 806        343.6       48.3          25.3          7.3      0.0 2014-2015
## 807        337.0       56.5          35.0         55.0      0.0 2014-2015
## 808        328.7       49.1          27.7         56.9      0.0 2014-2015
## 809        344.8       47.7          25.9          6.8      0.0 2014-2015
## 810        339.3       50.8          30.6         77.9      0.0 2014-2015
## 811        347.8       53.7          31.5         30.9      0.0 2014-2015
## 812        358.6       46.8          25.2          7.5      0.0 2014-2015
## 813        351.9       45.2          23.9         51.0      0.0 2014-2015
## 814        351.8       48.6          28.0         52.2      0.0 2014-2015
## 815        355.9       41.1          20.1         76.9      0.0 2014-2015
## 816        360.0       43.8          22.8         31.1      0.0 2014-2015
## 817        353.2       50.1          30.7         30.8      0.0 2014-2015
## 818        461.2       50.1          33.0          4.4      0.0 2014-2015
## 819        469.7       43.3          28.0          4.2      0.0 2014-2015
## 820        473.2       39.7          23.0          4.3      0.0 2014-2015
## 821        464.4       51.2          36.0         24.3      0.0 2014-2015
## 822        474.2       48.4          30.0          4.7      0.0 2014-2015
## 823        475.9       45.0          29.0          4.3      0.0 2014-2015
## 824        479.4       41.0          23.0          4.4      0.0 2014-2015
## 825        478.5       48.6          32.0          4.4      0.0 2014-2015
## 826        473.6       42.8          26.0         24.4      0.0 2014-2015
## 827        462.6       43.4          25.0         45.4      0.0 2014-2015
## 828        479.5       43.7          27.0          4.7      0.0 2014-2015
## 829        475.8       51.7          34.0         24.4      0.0 2014-2015
## 830        477.9       45.8          28.0         26.3      0.0 2014-2015
## 831        485.3       45.4          28.0          4.5      0.0 2014-2015
## 832        473.8       44.5          27.0          4.4      0.0 2014-2015
## 833        479.2       44.5          28.0         24.9      0.0 2014-2015
## 834        483.4       36.6          20.0          4.5      0.0 2014-2015
## 835        483.9       42.1          26.0          4.2      0.0 2014-2015
## 836        478.7       38.5          20.0         25.0      0.0 2014-2015
## 837        474.1       44.9          27.0         25.6      0.0 2014-2015
## 838        477.1       46.7          29.0         26.0      0.0 2014-2015
## 839        479.1       44.5          27.0         25.2      0.0 2014-2015
## 840        481.1       42.7          25.0         26.2      0.0 2014-2015
## 841        484.2       44.7          27.0         25.8      0.0 2014-2015
## 842        484.9       46.7          29.0         26.5      0.0 2014-2015
## 843        484.0       36.2          20.0         26.1      0.0 2014-2015
## 844        477.1       44.9          26.0         25.4      0.0 2014-2015
## 845        482.1       46.4          28.0          4.8      0.0 2014-2015
## 846        479.3       43.8          27.0         27.1      0.0 2014-2015
## 847        491.1       42.6          23.0          4.4      0.0 2014-2015
## 848        494.5       41.6          24.0          4.5      0.0 2014-2015
## 849        489.4       50.5          33.0          4.0      0.0 2014-2015
## 850        493.1       51.4          33.0          4.7      0.0 2014-2015
## 851        496.2       43.1          28.0         24.5      0.0 2014-2015
## 852        480.3       37.4          21.0         45.3      0.0 2014-2015
## 853        474.8       47.6          31.0         25.0      0.0 2014-2015
## 854        487.2       45.0          27.0         25.5      0.0 2014-2015
## 855        473.5       42.6          25.0          4.3      0.0 2014-2015
## 856        490.7       42.9          25.0         27.3      0.0 2014-2015
## 857        481.0       49.8          31.0         45.4      0.0 2014-2015
## 858        491.2       45.7          30.0         25.5      0.0 2014-2015
## 859        472.1       48.3          30.0         24.3      0.0 2014-2015
## 860        471.9       38.6          21.0         47.6      0.0 2014-2015
## 861        484.1       49.3          32.0         46.9      0.0 2014-2015
## 862        489.3       42.8          23.0         25.8      0.0 2014-2015
## 863        493.2       51.2          32.0         25.9      0.0 2014-2015
## 864        490.4       45.7          28.0         49.2      0.0 2014-2015
## 865        485.9       45.2          28.0         47.0      0.0 2014-2015
## 866        480.1       50.5          33.0         70.0      0.0 2014-2015
## 867        483.0       51.6          32.0         49.5      0.0 2014-2015
## 868        481.8       51.3          33.0         44.8      0.0 2014-2015
## 869        503.3       45.2          25.0          4.8      0.0 2014-2015
## 870        479.7       47.1          29.0         47.9      0.0 2014-2015
## 871        502.4       51.3          30.0          4.7      0.0 2014-2015
## 872        506.7       45.1          27.0         26.2      0.0 2014-2015
## 873        475.0       42.6          26.0         24.9      0.0 2014-2015
## 874        489.0       43.0          25.0          4.4      0.0 2014-2015
## 875        485.3       44.9          27.0         72.3      0.0 2014-2015
## 876        487.2       45.0          28.0         47.6      0.0 2014-2015
## 877        494.4       42.9          25.0         48.1      0.0 2014-2015
## 878        497.0       48.3          25.0         48.4      0.0 2014-2015
## 879        505.0       53.0          34.0         25.9      0.0 2014-2015
## 880        498.4       50.1          31.0          4.2      0.0 2014-2015
## 881        505.1       46.4          28.0          4.7      0.0 2014-2015
## 882        494.9       54.3          36.0         25.9      0.0 2014-2015
## 883        495.2       59.9          43.0         27.5      0.0 2014-2015
## 884        492.6       43.9          27.0         28.9      0.0 2014-2015
## 885        499.4       50.6          33.0         26.5      0.0 2014-2015
## 886        499.9       49.3          31.0         26.3      0.0 2014-2015
## 887        487.8       51.5          32.0         49.4      0.0 2014-2015
## 888        499.9       51.8          33.0         72.6      0.0 2014-2015
## 889        504.9       46.9          29.0         26.2      0.0 2014-2015
## 890        510.9       53.9          35.0         48.9      0.0 2014-2015
## 891        532.6       44.5          26.0          4.6      0.0 2014-2015
## 892        503.9       47.9          29.0         28.4      0.0 2014-2015
## 893        496.0       47.9          28.0         49.3      0.0 2014-2015
## 894        516.3       47.9          28.0         51.4      0.0 2014-2015
## 895        519.4       52.8          34.0         26.8      0.0 2014-2015
## 896        497.6       46.8          28.0          4.6      0.0 2014-2015
## 897        521.5       41.4          23.0         26.7      0.0 2014-2015
## 898        499.6       46.9          27.0         73.8      0.0 2014-2015
## 899        512.6       48.1          27.0         48.1      0.0 2014-2015
## 900        524.8       48.5          29.0         52.6      0.0 2014-2015
## 901        512.2       63.8          44.0         74.0      0.0 2014-2015
## 902        492.8       48.0          28.0         75.8      0.0 2014-2015
## 903        487.3       61.4          43.0         75.5      0.0 2014-2015
## 904        529.6       41.4          23.0         56.8      0.0 2014-2015
## 905        518.8       42.6          24.0         29.5      0.0 2014-2015
## 906        533.6       56.1          36.0         52.9      0.0 2014-2015
## 907        522.3       55.3          34.0        102.7      0.0 2014-2015
## 908        543.4       50.8          30.0         53.2      0.0 2014-2015
## 909        556.1       49.6          29.0         28.2      0.0 2014-2015
## 910        571.9       58.4          38.0         30.4      0.0 2014-2015
## 911        531.6       50.2          29.0         78.4      0.0 2014-2015
## 912        410.8       41.6          25.0         28.4      0.0 2014-2015
## 913        406.6       44.1          27.0          5.1      0.0 2014-2015
## 914        419.8       48.9          31.0          6.6      0.0 2014-2015
## 915        405.3       44.7          26.0          5.8      0.0 2014-2015
## 916        410.0       43.7          25.0          5.5      0.0 2014-2015
## 917        407.5       44.0          27.0         28.7      0.0 2014-2015
## 918        416.3       45.1          26.0          5.2      0.0 2014-2015
## 919        407.2       48.5          29.0         28.5      0.0 2014-2015
## 920        419.4       45.4          27.0          4.8      0.0 2014-2015
## 921        419.6       45.6          25.0          4.9      0.0 2014-2015
## 922        412.4       51.3          32.0         27.8      0.0 2014-2015
## 923        416.5       45.8          27.0         29.0      0.0 2014-2015
## 924        419.8       47.2          28.0         28.5      0.0 2014-2015
## 925        415.6       46.8          29.0          5.0      0.0 2014-2015
## 926        418.7       46.3          27.0         51.7      0.0 2014-2015
## 927        428.8       47.8          28.0         29.1      0.0 2014-2015
## 928        426.6       49.1          30.0         31.1      0.0 2014-2015
## 929        418.6       50.5          30.0         29.4      0.0 2014-2015
## 930        422.3       43.8          28.0         30.0      0.0 2014-2015
## 931        424.5       46.3          31.0         29.9      0.0 2014-2015
## 932        417.3       47.3          28.0         28.3      0.0 2014-2015
## 933        420.4       51.2          33.0         28.1      0.0 2014-2015
## 934        416.5       46.1          25.0         30.4      0.0 2014-2015
## 935        417.5       54.1          36.0         27.5      0.0 2014-2015
## 936        435.2       39.1          21.0         27.0      0.0 2014-2015
## 937        429.8       44.1          26.0         27.9      0.0 2014-2015
## 938        422.5       45.4          26.0         83.4      0.0 2014-2015
## 939        434.2       49.8          31.0          5.8      0.0 2014-2015
## 940        420.8       58.9          40.0          5.6      0.0 2014-2015
## 941        426.3       46.3          28.0         53.7      0.0 2014-2015
## 942        422.9       53.1          33.0          5.6      0.0 2014-2015
## 943        441.1       41.7          23.0         29.9      0.0 2014-2015
## 944        431.2       49.1          31.0         30.7      0.0 2014-2015
## 945        431.1       50.2          31.0         78.9      0.0 2014-2015
## 946        425.9       37.5          19.0          5.0      0.0 2014-2015
## 947        407.3       48.2          30.0         30.5      0.0 2014-2015
## 948        416.8       52.1          32.0          4.8      0.0 2014-2015
## 949        421.4       48.1          28.0         30.7      0.0 2014-2015
## 950        424.0       46.3          26.0         30.0      0.0 2014-2015
## 951        419.6       44.7          25.0         29.5      0.0 2014-2015
## 952        412.1       51.5          33.0         77.1      0.0 2014-2015
## 953        421.2       55.2          33.0         79.4      0.0 2014-2015
## 954        420.6       48.2          28.0         28.3      0.0 2014-2015
## 955        426.6       47.4          28.0          4.7      0.0 2014-2015
## 956        429.2       42.5          25.0         29.1      0.0 2014-2015
## 957        450.7       44.8          25.0         31.0      0.0 2014-2015
## 958        439.7       55.5          34.0         60.1      0.0 2014-2015
## 959        436.4       51.5          32.0         56.7      0.0 2014-2015
## 960        443.4       46.1          27.0          5.0      0.0 2014-2015
## 961        433.0       43.4          24.0         55.8      0.0 2014-2015
## 962        427.7       55.3          34.0         55.8      0.0 2014-2015
## 963        447.6       43.7          25.0         31.2      0.0 2014-2015
## 964        446.6       43.1          23.0         32.4      0.0 2014-2015
## 965        438.1       53.1          32.0         62.0      0.0 2014-2015
## 966        757.3       45.9          24.0          3.7      0.0 2014-2015
## 967        755.2       49.7          29.0         25.9      0.0 2014-2015
## 968        756.4       62.8          41.0         24.9      0.0 2014-2015
## 969        753.1       56.5          34.0         50.6      0.0 2014-2015
## 970        751.0       55.3          33.0          3.9      0.0 2014-2015
## 971        743.0       58.6          37.0         25.7      0.0 2014-2015
## 972        754.3       48.9          27.0         27.1      0.0 2014-2015
## 973        762.9       47.2          26.0         27.0      0.0 2014-2015
## 974        762.1       49.1          28.0          4.0      0.0 2014-2015
## 975        796.6       67.4          46.0          3.2      0.0 2014-2015
## 976        767.8       52.2          30.0          3.5      0.0 2014-2015
## 977        786.7       40.4          19.0          3.4      0.0 2014-2015
## 978        759.8       48.0          27.0         49.6      0.0 2014-2015
## 979        751.5       49.4          28.0         51.8      0.0 2014-2015
## 980        758.1       55.1          32.0         54.4      0.0 2014-2015
## 981        766.8       48.0          26.0          3.5      0.0 2014-2015
## 982        747.2       51.2          30.0         50.6      0.0 2014-2015
## 983        785.9       63.8          42.0         27.1      0.0 2014-2015
## 984        761.8       57.3          35.0         51.1      0.0 2014-2015
## 985        761.9       46.4          25.0         26.5      0.0 2014-2015
## 986        788.0       49.6          27.0          3.6      0.0 2014-2015
## 987        775.9       55.5          34.0         50.9      0.0 2014-2015
## 988        761.8       47.5          25.0          3.5      0.0 2014-2015
## 989        798.4       55.5          32.0         28.7      0.0 2014-2015
## 990        774.3       48.0          27.0         27.9      0.0 2014-2015
## 991        787.0       64.9          43.0         28.2      0.0 2014-2015
## 992        771.6       54.0          31.0         54.0      0.0 2014-2015
## 993        781.7       46.1          26.0         26.2      0.0 2014-2015
## 994        787.3       53.4          33.0         27.6      0.0 2014-2015
## 995        750.8       65.7          45.0         47.2      0.0 2014-2015
## 996        772.4       52.6          27.0         52.4      0.0 2014-2015
## 997        783.4       69.8          50.0         50.6      0.0 2014-2015
## 998        766.5       61.0          42.0         49.2      0.0 2014-2015
## 999        776.6       50.3          28.0         79.1      0.0 2014-2015
## 1000       776.1       49.7          28.0         76.3      0.0 2014-2015
## 1001       780.2       49.9          28.0          3.7      0.0 2014-2015
## 1002       793.9       53.4          31.0          3.5      0.0 2014-2015
## 1003       787.0       48.3          30.0         51.1      0.0 2014-2015
## 1004       799.2       54.6          34.0         53.8      0.0 2014-2015
## 1005       807.9       52.8          29.0         29.3      0.0 2014-2015
## 1006       794.9       56.3          34.0         49.3      0.0 2014-2015
## 1007       763.5       62.8          42.0         72.2      0.0 2014-2015
## 1008       772.1       58.7          37.0         53.1      0.0 2014-2015
## 1009       792.8       59.7          38.0         52.0      0.0 2014-2015
## 1010       762.1       51.1          27.0         80.8      0.0 2014-2015
## 1011       784.4       54.7          31.0         28.8      0.0 2014-2015
## 1012       785.2       54.0          31.0         53.2      0.0 2014-2015
## 1013       801.0       73.6          51.0         29.3      0.0 2014-2015
## 1014       822.1       43.6          22.0         29.7      0.0 2014-2015
## 1015       785.9       49.9          28.0         27.2      0.0 2014-2015
## 1016       822.0       50.8          28.0         53.1      0.0 2014-2015
## 1017       835.5       51.7          30.0          3.9      0.0 2014-2015
## 1018       812.7       76.9          55.0         77.9      0.0 2014-2015
## 1019       793.3       54.2          32.0         52.4      0.0 2014-2015
## 1020       791.8       52.1          30.0         50.9      0.0 2014-2015
## 1021       764.0       50.1          26.0         81.0      0.0 2014-2015
## 1022       792.0       56.2          32.0         29.6      0.0 2014-2015
## 1023       768.5       60.1          37.0         81.1      0.0 2014-2015
## 1024       784.5       52.7          32.0         52.2      0.0 2014-2015
## 1025       807.0       53.9          32.0          3.6      0.0 2014-2015
## 1026       762.0       54.9          32.0        105.3      0.0 2014-2015
## 1027       822.6       48.4          25.0          3.7      0.0 2014-2015
## 1028       817.6       64.0          42.0         26.3      0.0 2014-2015
## 1029       777.9       55.8          34.0        104.6      0.0 2014-2015
## 1030       783.8       51.5          30.0         27.4      0.0 2014-2015
## 1031       780.9       65.0          42.0         54.3      0.0 2014-2015
## 1032       812.8       51.2          31.0          3.6      0.0 2014-2015
## 1033       818.8       59.2          37.0         28.5      0.0 2014-2015
## 1034       790.4       60.4          36.0         83.3      0.0 2014-2015
## 1035       780.0       69.8          50.0         97.8      0.0 2014-2015
## 1036       783.9       61.9          39.0        108.0      0.0 2014-2015
## 1037       789.7       67.6          44.0         77.6      0.0 2014-2015
## 1038       826.2       61.2          36.0         55.9      0.0 2014-2015
## 1039       791.7       62.6          40.0         80.7      0.0 2014-2015
## 1040       818.6       59.6          37.0         26.8      0.0 2014-2015
## 1041       795.5       64.1          39.0         85.4      0.0 2014-2015
## 1042       820.1       47.9          24.0         31.4      0.0 2014-2015
## 1043       857.7       64.8          41.0          4.0      0.0 2014-2015
## 1044       804.3       60.5          38.0         54.5      0.0 2014-2015
## 1045       791.0       59.6          40.0         26.2      0.0 2014-2015
## 1046       796.3       81.6          59.0          3.6      0.0 2014-2015
## 1047       827.8       57.0          35.0         58.8      0.0 2014-2015
## 1048       855.0       53.0          29.0         52.6      0.0 2014-2015
## 1049       848.2       75.7          53.0         80.4      0.0 2014-2015
## 1050       844.6       56.7          34.0         51.0      0.0 2014-2015
## 1051       847.4       59.5          35.0         87.2      0.0 2014-2015
## 1052       815.3       72.7          49.0         79.0      0.0 2014-2015
## 1053       823.8       74.1          50.0        109.2      0.0 2014-2015
## 1054       827.7       61.9          40.0         84.9      0.0 2014-2015
## 1055       865.7       78.3          54.0         29.0      0.0 2014-2015
## 1056       864.0       48.3          22.0         32.2      0.0 2014-2015
## 1057       847.7       58.2          35.0         58.8      0.0 2014-2015
## 1058       821.6       56.4          35.0         27.6      0.0 2014-2015
## 1059       846.5       73.2          48.0         86.1      0.0 2014-2015
## 1060       849.2       60.2          36.0        114.7      0.0 2014-2015
## 1061       958.2      104.4          81.0          3.7      0.0 2014-2015
## 1062       835.6       55.4          32.0         30.7      0.0 2014-2015
## 1063       833.6       68.5          43.0         87.4      0.0 2014-2015
## 1064       887.0       79.2          54.0         91.5      0.0 2014-2015
## 1065       397.6       93.6          68.0          4.4      0.0 2014-2015
## 1066       390.2       49.3          27.0         27.4      0.0 2014-2015
## 1067       410.0       46.3          22.0         50.8      0.0 2014-2015
## 1068       400.1       54.9          33.0         28.1      0.0 2014-2015
## 1069       400.3       52.4          29.0         52.3      0.0 2014-2015
## 1070       378.0       58.3          29.0         48.3      0.0 2014-2015
## 1071       393.4       52.2          25.0         51.2      0.0 2014-2015
## 1072       404.5       55.7          33.0         52.2      0.0 2014-2015
## 1073       397.1       55.5          33.0         51.0      0.0 2014-2015
## 1074       389.9       63.8          38.0         51.1      0.0 2014-2015
## 1075       406.5       48.0          24.0         28.9      0.0 2014-2015
## 1076       407.2       52.5          28.0         77.3      0.0 2014-2015
## 1077       405.8       72.7          51.0         55.6      0.0 2014-2015
## 1078       401.6       70.0          48.0         28.0      0.0 2014-2015
## 1079       421.6       53.5          32.0          3.9      0.0 2014-2015
## 1080       415.0       96.8          71.0         27.7      0.0 2014-2015
## 1081       412.0       52.6          31.0         77.7      0.0 2014-2015
## 1082       402.7       70.0          48.0         29.5      0.0 2014-2015
## 1083       406.3       49.1          27.0         27.5      0.0 2014-2015
## 1084       424.1       50.9          29.0         28.5      0.0 2014-2015
## 1085       404.6       54.1          32.0         78.3      0.0 2014-2015
## 1086       402.8       66.6          44.0         30.4      0.0 2014-2015
## 1087       391.6       83.8          60.0         80.5      0.0 2014-2015
## 1088       435.5       58.1          35.0          3.6      0.0 2014-2015
## 1089       401.8       77.1          54.0         76.4      0.0 2014-2015
## 1090       415.6       46.1          23.0         28.9      0.0 2014-2015
## 1091       402.6       69.8          47.0         57.5      0.0 2014-2015
## 1092       428.7       55.9          31.0         29.8      0.0 2014-2015
## 1093       422.3       52.3          30.0         81.4      0.0 2014-2015
## 1094       469.0       41.0          23.7          5.6      0.0 2014-2015
## 1095       477.7       45.2          26.1          5.9      0.0 2014-2015
## 1096       480.8       43.8          24.0          5.8      0.0 2014-2015
## 1097       479.3       47.7          30.0          5.9      0.0 2014-2015
## 1098       477.9       43.7          24.9          6.2      0.0 2014-2015
## 1099       475.1       48.6          28.1          6.1      0.0 2014-2015
## 1100       473.9       42.3          23.0         29.1      0.0 2014-2015
## 1101       468.8       42.9          23.7         28.9      0.0 2014-2015
## 1102       485.6       45.3          25.7          6.3      0.0 2014-2015
## 1103       486.4       42.5          22.2         29.8      0.0 2014-2015
## 1104       476.8       45.1          25.2         28.9      0.0 2014-2015
## 1105       485.8       46.1          25.8          6.1      0.0 2014-2015
## 1106       474.8       52.1          32.3          5.8      0.0 2014-2015
## 1107       489.8       44.9          25.1          6.0      0.0 2014-2015
## 1108       480.3       41.1          20.2         52.2      0.0 2014-2015
## 1109       483.0       43.1          22.5          6.1      0.0 2014-2015
## 1110       475.9       44.7          27.0         28.1      0.0 2014-2015
## 1111       477.9       50.5          31.0          6.4      0.0 2014-2015
## 1112       476.9       50.0          30.7         50.2      0.0 2014-2015
## 1113       483.9       45.9          25.0         29.7      0.0 2014-2015
## 1114       490.5       44.6          24.7          5.8      0.0 2014-2015
## 1115       484.6       44.5          24.2          6.2      0.0 2014-2015
## 1116       479.9       44.9          25.5         50.6      0.0 2014-2015
## 1117       487.3       49.2          29.5         28.4      0.0 2014-2015
## 1118       482.5       47.2          27.6         29.9      0.0 2014-2015
## 1119       484.8       48.5          28.8          6.2      0.0 2014-2015
## 1120       481.7       42.8          22.6         28.9      0.0 2014-2015
## 1121       487.5       45.6          25.7         29.2      0.0 2014-2015
## 1122       476.7       50.5          29.6         30.4      0.0 2014-2015
## 1123       485.8       48.9          27.7         29.5      0.0 2014-2015
## 1124       491.6       45.5          24.7          6.0      0.0 2014-2015
## 1125       498.4       52.1          32.9          6.0      0.0 2014-2015
## 1126       488.1       44.7          26.0         29.2      0.0 2014-2015
## 1127       482.7       57.3          36.5         30.0      0.0 2014-2015
## 1128       492.7       46.4          25.4          6.0      0.0 2014-2015
## 1129       487.8       51.2          29.3         31.8      0.0 2014-2015
## 1130       489.1       48.5          27.2          6.6      0.0 2014-2015
## 1131       496.5       47.8          25.9         30.8      0.0 2014-2015
## 1132       476.2       45.9          24.7         54.8      0.0 2014-2015
## 1133       494.3       45.4          23.9         54.9      0.0 2014-2015
## 1134       484.4       45.6          26.2         53.4      0.0 2014-2015
## 1135       482.9       46.7          26.4         54.3      0.0 2014-2015
## 1136       496.7       48.2          30.5          6.2      0.0 2014-2015
## 1137       503.9       47.3          24.6          6.6      0.0 2014-2015
## 1138       488.6       50.3          29.9         31.0      0.0 2014-2015
## 1139       486.8       43.6          25.7         52.3      0.0 2014-2015
## 1140       499.8       46.3          25.8         30.9      0.0 2014-2015
## 1141       493.7       52.6          30.5         30.1      0.0 2014-2015
## 1142       487.1       44.3          25.8         53.8      0.0 2014-2015
## 1143       503.5       44.4          23.9         30.7      0.0 2014-2015
## 1144       506.5       42.4          23.5          6.1      0.0 2014-2015
## 1145       478.9       49.4          28.8        105.3      0.0 2014-2015
## 1146       479.5       42.1          23.4         77.5      0.0 2014-2015
## 1147       503.8       55.7          36.2          6.7      0.0 2014-2015
## 1148       484.0       53.2          31.6         56.4      0.0 2014-2015
## 1149       487.8       54.1          33.5         76.8      0.0 2014-2015
## 1150       500.5       44.9          26.0         29.6      0.0 2014-2015
## 1151       508.1       47.5          26.2         29.3      0.0 2014-2015
## 1152       490.6       55.5          32.9         54.2      0.0 2014-2015
## 1153       512.9       47.5          26.1         31.0      0.0 2014-2015
## 1154       516.5       53.1          30.7          6.6      0.0 2014-2015
## 1155       487.5       52.1          32.7         54.1      0.0 2014-2015
## 1156       491.5       66.5          47.0         29.3      0.0 2014-2015
## 1157       492.2       54.4          33.4         54.1      0.0 2014-2015
## 1158       501.7       48.7          27.2         30.0      0.0 2014-2015
## 1159       494.8       45.8          23.6         79.8      0.0 2014-2015
## 1160       513.5       53.0          29.2         29.6      0.0 2014-2015
## 1161       513.7       59.2          38.5         31.7      0.0 2014-2015
## 1162       518.3       43.1          22.5         31.1      0.0 2014-2015
## 1163       498.5       57.3          35.0         30.6      0.0 2014-2015
## 1164       491.3       46.8          24.1         54.2      0.0 2014-2015
## 1165       511.2       51.2          29.7         54.6      0.0 2014-2015
## 1166       530.6       51.7          29.0         31.4      0.0 2014-2015
## 1167       524.0       49.7          29.6          6.2      0.0 2014-2015
## 1168       508.4       42.6          21.7         31.0      0.0 2014-2015
## 1169       507.3       45.3          24.5          6.2      0.0 2014-2015
## 1170       518.3       50.2          28.3          6.5      0.0 2014-2015
## 1171       524.1       50.5          27.8         32.7      0.0 2014-2015
## 1172       500.0       53.6          32.9         80.7      0.0 2014-2015
## 1173       480.0       47.7          26.9         80.7      0.0 2014-2015
## 1174       492.9       42.3          21.6         81.2      0.0 2014-2015
## 1175       520.5       53.5          34.1         30.7      0.0 2014-2015
## 1176       523.7       47.7          26.1         59.4      0.0 2014-2015
## 1177       501.5       59.2          35.4         56.1      0.0 2014-2015
## 1178       518.9       54.2          31.9         57.2      0.0 2014-2015
## 1179       508.0       45.1          25.1         82.6      0.0 2014-2015
## 1180       510.9       48.8          28.2         56.8      0.0 2014-2015
## 1181       504.2       45.8          24.5         30.7      0.0 2014-2015
## 1182       504.6       46.4          26.3         30.7      0.0 2014-2015
## 1183       506.8       50.8          29.6         81.0      0.0 2014-2015
## 1184       524.5       69.8          47.3         57.6      0.0 2014-2015
## 1185       520.9       46.6          26.5         30.4      0.0 2014-2015
## 1186       511.5       56.3          34.4         56.6      0.0 2014-2015
## 1187       542.7       49.5          24.7         34.2      0.0 2014-2015
## 1188       551.6       55.0          26.4          6.7      0.0 2014-2015
## 1189       538.6       52.4          30.6         32.5      0.0 2014-2015
## 1190       548.1       44.2          21.3         60.2      0.0 2014-2015
## 1191       543.1       47.4          23.6         83.1      0.0 2014-2015
## 1192       524.8       47.0          26.1         83.1      0.0 2014-2015
## 1193       630.9       44.7          22.9          0.0   2607.4 2014-2015
## 1194       622.6       45.3          25.9          0.0   2619.9 2014-2015
## 1195       628.5       58.1          39.0          0.0   2679.5 2014-2015
## 1196       636.7       56.0          35.7          0.0   2678.5 2014-2015
## 1197       633.4       55.2          34.5         60.0   2631.9 2014-2015
## 1198       607.8       40.4          21.4          0.0   2576.4 2014-2015
## 1199       627.1       47.4          26.6          0.0   2667.2 2014-2015
## 1200       619.1       37.7          18.2         60.0   2551.8 2014-2015
## 1201       650.2       43.5          22.4          0.0   2693.8 2014-2015
## 1202       651.7       54.4          32.8         60.0   2723.9 2014-2015
## 1203       626.0       48.2          28.4          0.0   2639.2 2014-2015
## 1204       633.7       53.1          30.6         60.0   2646.8 2014-2015
## 1205       650.9       43.6          26.2         60.0   2677.1 2014-2015
## 1206       645.0       52.4          31.6        120.0   2694.8 2014-2015
## 1207       619.0       43.0          21.5        120.0   2610.5 2014-2015
## 1208       643.6       55.3          34.3        120.0   2661.0 2014-2015
## 1209       626.9       48.3          25.4         60.0   2625.6 2014-2015
## 1210       654.9       55.7          33.0         60.0   2738.0 2014-2015
## 1211       662.1       48.9          28.6         60.0   2802.9 2014-2015
## 1212       644.0       58.5          36.7        120.0   2700.7 2014-2015
## 1213       657.0       47.2          27.0          0.0   2714.5 2014-2015
## 1214       634.1       55.9          35.6        120.0   2648.7 2014-2015
## 1215       629.9       45.9          24.6        120.0   2640.9 2014-2015
## 1216       613.6       67.6          47.3        120.0   2608.3 2014-2015
## 1217       655.0       48.2          26.7          0.0   2701.4 2014-2015
## 1218       644.9       52.1          31.0         60.0   2774.8 2014-2015
## 1219       622.8       48.0          27.5         60.0   2606.9 2014-2015
## 1220       646.1       51.2          28.9        120.0   2713.9 2014-2015
## 1221       635.4       48.9          27.0        120.0   2612.0 2014-2015
## 1222       626.8       49.8          27.6        120.0   2626.2 2014-2015
## 1223       623.1       57.1          36.6        120.0   2643.4 2014-2015
## 1224       682.6       48.4          26.7         60.0   2831.9 2014-2015
## 1225       642.2       72.7          49.5        180.0   2695.3 2014-2015
## 1226       660.0       50.6          27.5          0.0   2753.5 2014-2015
## 1227       639.9       50.6          30.1        120.0   2668.8 2014-2015
## 1228       655.0       45.2          24.7         60.0   2738.5 2014-2015
## 1229       683.2       48.3          28.4         60.0   2841.5 2014-2015
## 1230       653.5       52.7          31.6        120.0   2734.6 2014-2015
## 1231       642.2       49.5          25.3        180.0   2678.8 2014-2015
## 1232       687.8       50.3          27.6          0.0   2841.5 2014-2015
## 1233       656.9       56.1          33.0         60.0   2743.2 2014-2015
## 1234       643.9       47.5          27.2        120.0   2658.5 2014-2015
## 1235       626.1       46.4          24.7        120.0   2650.2 2014-2015
## 1236       668.1       44.5          24.9         60.0   2753.9 2014-2015
## 1237       644.8       46.9          25.0         60.0   2707.3 2014-2015
## 1238       669.5       48.4          27.0        120.0   2799.9 2014-2015
## 1239       682.9       46.2          23.5         60.0   2758.4 2014-2015
## 1240       662.1       50.2          28.9        180.0   2725.8 2014-2015
## 1241       666.7       58.9          38.0          0.0   2777.4 2014-2015
## 1242       665.1       47.4          24.3        120.0   2753.5 2014-2015
## 1243       663.8       42.6          21.2         60.0   2780.0 2014-2015
## 1244       683.2       47.5          23.5         60.0   2829.9 2014-2015
## 1245       666.9       49.8          28.3        180.0   2727.3 2014-2015
## 1246       629.6       42.7          21.7        120.0   2655.7 2014-2015
## 1247       706.2       45.5          23.4          0.0   2837.4 2014-2015
## 1248       644.0       50.5          28.7         60.0   2759.5 2014-2015
## 1249       705.4       70.3          29.5          0.0   2925.0 2014-2015
## 1250       672.1       45.0          23.4         60.0   2755.9 2014-2015
## 1251       617.1       47.0          27.3         60.0   2634.5 2014-2015
## 1252       666.7       47.2          22.3          0.0   2776.6 2014-2015
## 1253       682.6       46.0          23.7        120.0   2843.4 2014-2015
## 1254       688.1       52.5          29.6        120.0   2791.5 2014-2015
## 1255       671.1       51.8          29.6         60.0   2841.8 2014-2015
## 1256       644.4       53.4          30.5        120.0   2699.5 2014-2015
## 1257       696.6       53.0          31.8         60.0   2904.1 2014-2015
## 1258       689.1       42.5          19.4          0.0   2830.1 2014-2015
## 1259       660.2       50.3          29.6         60.0   2814.4 2014-2015
## 1260       675.9       50.9          27.7         60.0   2801.2 2014-2015
## 1261       644.8       56.4          33.4         60.0   2662.6 2014-2015
## 1262       674.2       50.9          28.2          0.0   2823.5 2014-2015
## 1263       689.9       45.3          22.4         60.0   2851.9 2014-2015
## 1264       667.4       58.3          36.9        180.0   2786.6 2014-2015
## 1265       670.9       49.9          27.4         60.0   2763.9 2014-2015
## 1266       657.8       52.9          32.2          0.0   2751.5 2014-2015
## 1267       637.0       42.1          19.5        180.0   2634.4 2014-2015
## 1268       678.1       46.6          23.9          0.0   2782.7 2014-2015
## 1269       666.7       45.3          23.4         60.0   2803.4 2014-2015
## 1270       692.1       49.0          23.9         60.0   2854.2 2014-2015
## 1271       655.6       52.8          29.2        180.0   2762.6 2014-2015
## 1272       659.0       51.5          31.0        180.0   2754.9 2014-2015
## 1273       700.4       82.2          57.6         60.0   2739.2 2014-2015
## 1274       648.6       48.4          27.7         60.0   2712.2 2014-2015
## 1275       660.8       48.5          26.9         60.0   2746.5 2014-2015
## 1276       628.2       43.7          21.5        180.0   2657.0 2014-2015
## 1277       678.2       51.9          30.0        120.0   2815.3 2014-2015
## 1278       685.5       47.7          26.0        120.0   2848.6 2014-2015
## 1279       714.2       54.2          32.7        120.0   2915.3 2014-2015
## 1280       721.7       54.1          30.0         60.0   3033.8 2014-2015
## 1281       684.0       60.2          36.7        180.0   2860.0 2014-2015
## 1282       666.0       55.0          32.4        180.0   2759.3 2014-2015
## 1283       689.7       43.5          21.3         60.0   2845.4 2014-2015
## 1284       712.9       49.2          27.5        120.0   2949.2 2014-2015
## 1285       659.9       48.0          25.4        180.0   2823.7 2014-2015
## 1286       699.7       52.3          32.4         60.0   2908.8 2014-2015
## 1287       675.2       49.6          28.1         60.0   2838.6 2014-2015
## 1288       700.1       54.6          29.5        120.0   2920.5 2014-2015
## 1289       714.9       49.6          25.0        180.0   2901.2 2014-2015
## 1290       719.1       50.8          28.6         60.0   2974.9 2014-2015
## 1291       711.1       60.0          37.8         60.0   2959.4 2014-2015
## 1292       346.8       41.3          21.8         31.1      0.0 2014-2015
## 1293       349.8       47.5          28.0          6.3      0.0 2014-2015
## 1294       348.9       44.1          22.1         31.4      0.0 2014-2015
## 1295       356.2       48.6          28.0         53.6      0.0 2014-2015
## 1296       345.1       48.9          36.6         29.7      0.0 2014-2015
## 1297       348.9       50.4          30.7         29.6      0.0 2014-2015
## 1298       346.8       49.7          31.8         29.4      0.0 2014-2015
## 1299       349.4       46.5          26.9         31.6      0.0 2014-2015
## 1300       358.6       46.4          27.1         30.2      0.0 2014-2015
## 1301       356.5       45.5          25.1         30.2      0.0 2014-2015
## 1302       358.7       51.3          35.1          6.9      0.0 2014-2015
## 1303       353.3       52.5          32.1         30.5      0.0 2014-2015
## 1304       362.0       60.6          38.6         30.3      0.0 2014-2015
## 1305       354.0       45.1          31.2         54.3      0.0 2014-2015
## 1306       366.7       54.9          35.6          6.2      0.0 2014-2015
## 1307       361.6       49.7          28.3         81.2      0.0 2014-2015
## 1308       363.7       44.3          24.9         31.7      0.0 2014-2015
## 1309       352.1       59.3          38.6         54.7      0.0 2014-2015
## 1310       361.9       58.1          39.4         57.0      0.0 2014-2015
## 1311       360.8       50.2          39.4         57.3      0.0 2014-2015
## 1312       364.9       48.4          27.3          7.0      0.0 2014-2015
## 1313       368.5       50.7          29.5          7.8      0.0 2014-2015
## 1314       365.9       51.3          30.6         57.0      0.0 2014-2015
## 1315       369.1       41.9          20.1         31.7      0.0 2014-2015
## 1316       363.9       56.5          37.5         30.3      0.0 2014-2015
## 1317       352.5       53.0          32.7         31.3      0.0 2014-2015
## 1318       366.6       43.5          23.7          7.0      0.0 2014-2015
## 1319       357.0       48.2          26.9         54.8      0.0 2014-2015
## 1320       369.7       52.7          30.7         31.4      0.0 2014-2015
## 1321       354.6       49.3          31.3         82.3      0.0 2014-2015
## 1322       360.9       52.0          34.5         30.6      0.0 2014-2015
## 1323       362.8       63.5          47.2         53.7      0.0 2014-2015
## 1324       370.3       58.4          37.3         58.8      0.0 2014-2015
## 1325       352.8       67.4          46.8         57.6      0.0 2014-2015
## 1326       359.2       58.7          40.1         82.0      0.0 2014-2015
## 1327       359.0       59.4          37.7         81.8      0.0 2014-2015
## 1328       367.0       48.5          29.5         30.2      0.0 2014-2015
## 1329       365.9       45.9          26.5          6.5      0.0 2014-2015
## 1330       378.4       52.0          30.1          7.5      0.0 2014-2015
## 1331       375.7       45.9          24.5          6.6      0.0 2014-2015
## 1332       363.0       57.0          37.2         55.6      0.0 2014-2015
## 1333       369.8       56.9          35.4         30.3      0.0 2014-2015
## 1334       367.6       53.5          36.4         57.2      0.0 2014-2015
## 1335       363.1       48.9          27.0         56.8      0.0 2014-2015
## 1336       375.8       45.0          24.5         59.8      0.0 2014-2015
## 1337       362.4       54.1          35.3         57.7      0.0 2014-2015
## 1338       379.8       47.1          30.2         56.8      0.0 2014-2015
## 1339       371.5       58.2          40.4         32.1      0.0 2014-2015
## 1340       381.0       51.0          32.7         31.8      0.0 2014-2015
## 1341       367.3       53.0          32.2         58.0      0.0 2014-2015
## 1342       371.1       56.4          35.4         59.2      0.0 2014-2015
## 1343       382.8       54.1          37.0         31.6      0.0 2014-2015
## 1344       369.1       49.9          32.2         80.6      0.0 2014-2015
## 1345       373.7       50.9          31.2         55.4      0.0 2014-2015
## 1346       373.5       62.4          43.5         62.2      0.0 2014-2015
## 1347       375.6       72.1          52.3        113.4      0.0 2014-2015
## 1348       380.4       83.8          61.0         33.2      0.0 2014-2015
## 1349       371.9       49.8          28.1        117.6      0.0 2014-2015
## 1350       382.2       49.8          28.7         59.3      0.0 2014-2015
## 1351       454.1       43.4          34.9          8.3      0.0 2014-2015
## 1352       459.1       40.1          24.9          8.7      0.0 2014-2015
## 1353       457.7       44.1          28.7          8.3      0.0 2014-2015
## 1354       451.6       41.9          25.3          8.4      0.0 2014-2015
## 1355       458.0       37.6          22.3          8.7      0.0 2014-2015
## 1356       459.9       46.7          29.2          8.8      0.0 2014-2015
## 1357       462.2       42.8          27.3          8.8      0.0 2014-2015
## 1358       464.1       37.2          21.2         30.7      0.0 2014-2015
## 1359       475.4       41.5          25.9          7.9      0.0 2014-2015
## 1360       468.2       38.3          21.6          8.7      0.0 2014-2015
## 1361       456.5       40.9          22.9         30.6      0.0 2014-2015
## 1362       470.5       43.5          26.3          9.0      0.0 2014-2015
## 1363       455.8       42.3          26.2         29.0      0.0 2014-2015
## 1364       463.9       44.5          28.4         29.8      0.0 2014-2015
## 1365       462.2       41.7          24.7         30.3      0.0 2014-2015
## 1366       470.5       44.9          29.2          8.5      0.0 2014-2015
## 1367       469.6       42.6          26.1          8.8      0.0 2014-2015
## 1368       476.4       45.3          28.5          8.4      0.0 2014-2015
## 1369       454.7       41.5          25.8         28.7      0.0 2014-2015
## 1370       468.9       37.6          21.5          8.5      0.0 2014-2015
## 1371       464.4       44.8          28.2          8.9      0.0 2014-2015
## 1372       469.6       38.2          20.8         30.4      0.0 2014-2015
## 1373       460.7       40.7          24.5         51.1      0.0 2014-2015
## 1374       474.2       42.0          25.9         29.9      0.0 2014-2015
## 1375       468.2       39.9          22.9         30.6      0.0 2014-2015
## 1376       463.6       39.8          23.4         52.6      0.0 2014-2015
## 1377       462.1       44.3          29.6         29.9      0.0 2014-2015
## 1378       472.3       43.5          26.4          8.7      0.0 2014-2015
## 1379       468.3       40.8          25.0          8.5      0.0 2014-2015
## 1380       465.7       40.3          24.6         31.2      0.0 2014-2015
## 1381       476.8       38.7          22.5         52.2      0.0 2014-2015
## 1382       462.7       38.4          21.7          9.2      0.0 2014-2015
## 1383       478.9       46.4          29.8         30.8      0.0 2014-2015
## 1384       461.4       44.9          28.3         52.0      0.0 2014-2015
## 1385       469.4       40.3          22.8         30.7      0.0 2014-2015
## 1386       479.1       46.1          28.5          8.4      0.0 2014-2015
## 1387       458.4       42.2          25.1         79.8      0.0 2014-2015
## 1388       484.0       43.2          26.7          9.0      0.0 2014-2015
## 1389       476.2       42.6          24.8          8.7      0.0 2014-2015
## 1390       475.2       42.2          25.7          8.6      0.0 2014-2015
## 1391       473.5       42.5          25.1          9.0      0.0 2014-2015
## 1392       485.6       43.5          26.4          8.4      0.0 2014-2015
## 1393       485.1       38.2          21.5          8.8      0.0 2014-2015
## 1394       461.7       47.8          31.1         29.9      0.0 2014-2015
## 1395       487.6       40.2          25.2          8.3      0.0 2014-2015
## 1396       484.4       45.0          27.3         31.3      0.0 2014-2015
## 1397       471.8       48.4          32.0         54.1      0.0 2014-2015
## 1398       470.8       43.9          26.2         55.6      0.0 2014-2015
## 1399       468.1       41.9          24.6         31.0      0.0 2014-2015
## 1400       482.0       46.3          25.9         30.5      0.0 2014-2015
## 1401       467.1       43.8          27.2          8.6      0.0 2014-2015
## 1402       480.8       37.5          19.9         32.0      0.0 2014-2015
## 1403       493.7       37.4          21.9          8.7      0.0 2014-2015
## 1404       480.1       48.4          30.5         31.6      0.0 2014-2015
## 1405       487.4       45.5          27.7          9.2      0.0 2014-2015
## 1406       476.5       46.7          30.9         53.7      0.0 2014-2015
## 1407       485.6       41.8          26.0          8.8      0.0 2014-2015
## 1408       499.5       43.5          26.1          9.4      0.0 2014-2015
## 1409       481.5       44.3          27.2         31.9      0.0 2014-2015
## 1410       461.5       45.2          29.6         31.6      0.0 2014-2015
## 1411       479.1       44.3          27.0         31.9      0.0 2014-2015
## 1412       480.2       46.4          28.8         33.9      0.0 2014-2015
## 1413       481.1       44.5          25.4         55.0      0.0 2014-2015
## 1414       480.6       44.9          28.3         31.1      0.0 2014-2015
## 1415       486.7       45.9          28.2         32.3      0.0 2014-2015
## 1416       497.4       43.7          24.3          8.9      0.0 2014-2015
## 1417       491.3       43.1          25.4          9.2      0.0 2014-2015
## 1418       479.6       45.7          28.7         75.5      0.0 2014-2015
## 1419       479.6       46.0          28.1         31.5      0.0 2014-2015
## 1420       481.0       47.8          30.7         52.3      0.0 2014-2015
## 1421       470.7       46.2          28.8         77.7      0.0 2014-2015
## 1422       495.5       43.2          23.4         33.3      0.0 2014-2015
## 1423       497.1       46.2          28.2         33.7      0.0 2014-2015
## 1424       481.9       42.7          25.2         54.5      0.0 2014-2015
## 1425       486.1       53.5          35.3         55.0      0.0 2014-2015
## 1426       488.2       54.9          36.9         32.7      0.0 2014-2015
## 1427       493.0       44.6          28.0         32.3      0.0 2014-2015
## 1428       487.1       42.3          24.8         31.3      0.0 2014-2015
## 1429       479.8       43.0          26.9         33.3      0.0 2014-2015
## 1430       488.2       47.8          30.7         60.7      0.0 2014-2015
## 1431       497.8       51.7          33.7         32.6      0.0 2014-2015
## 1432       494.5       47.9          29.6         55.4      0.0 2014-2015
## 1433       496.0       40.8          23.8         54.9      0.0 2014-2015
## 1434       508.6       41.6          24.6         32.9      0.0 2014-2015
## 1435       478.3       45.6          24.3         80.8      0.0 2014-2015
## 1436       505.5       53.7          34.9         32.5      0.0 2014-2015
## 1437       477.8       42.8          27.0         50.7      0.0 2014-2015
## 1438       490.2       48.2          30.7         33.0      0.0 2014-2015
## 1439       500.6       50.1          31.4          9.3      0.0 2014-2015
## 1440       498.9       40.9          22.4         36.2      0.0 2014-2015
## 1441       500.7       42.5          21.9         55.6      0.0 2014-2015
## 1442       486.4       50.6          33.1         78.2      0.0 2014-2015
## 1443       536.0       36.3          18.2         10.0      0.0 2014-2015
## 1444       514.5       45.0          27.6         33.3      0.0 2014-2015
## 1445       524.6       49.3          29.2         35.5      0.0 2014-2015
## 1446       495.0       49.8          30.9         81.4      0.0 2014-2015
## 1447       514.7       48.0          30.4         55.9      0.0 2014-2015
## 1448       572.3       54.3          33.2          0.0   2473.7 2014-2015
## 1449       580.6       44.9          22.7          0.0   2477.7 2014-2015
## 1450       590.2       45.2          22.8          0.0   2501.7 2014-2015
## 1451       578.9       49.7          24.9         60.0   2450.6 2014-2015
## 1452       600.5       51.1          28.0          0.0   2552.6 2014-2015
## 1453       597.4       47.2          25.8          0.0   2505.1 2014-2015
## 1454       583.5       47.6          28.6          0.0   2453.8 2014-2015
## 1455       589.1       50.7          30.1          0.0   2529.5 2014-2015
## 1456       596.2       49.5          28.0          0.0   2520.5 2014-2015
## 1457       605.4       48.5          26.7          0.0   2584.8 2014-2015
## 1458       582.2       44.9          23.1          0.0   2481.3 2014-2015
## 1459       601.0       46.1          23.8         60.0   2548.3 2014-2015
## 1460       614.8       43.1          21.3          0.0   2543.2 2014-2015
## 1461       581.8       55.4          32.0         60.0   2499.8 2014-2015
## 1462       585.6       47.4          25.0         60.0   2495.0 2014-2015
## 1463       592.3       45.7          24.1          0.0   2502.4 2014-2015
## 1464       603.6       50.4          27.3          0.0   2563.0 2014-2015
## 1465       599.7       58.9          33.0          0.0   2560.1 2014-2015
## 1466       596.3       48.5          21.1        120.0   2499.2 2014-2015
## 1467       605.6       47.7          26.1          0.0   2556.4 2014-2015
## 1468       609.0       52.6          31.0          0.0   2625.5 2014-2015
## 1469       605.7       62.4          37.9         60.0   2567.9 2014-2015
## 1470       600.8       50.0          27.4         60.0   2529.3 2014-2015
## 1471       609.7       45.1          22.9          0.0   2582.7 2014-2015
## 1472       606.9       48.3          27.2          0.0   2540.7 2014-2015
## 1473       603.1       61.0          38.9          0.0   2594.4 2014-2015
## 1474       591.3       48.6          26.0         60.0   2488.0 2014-2015
## 1475       610.0       48.0          25.2          0.0   2567.4 2014-2015
## 1476       603.7       44.2          20.5         60.0   2550.8 2014-2015
## 1477       622.1       54.9          32.1         60.0   2608.5 2014-2015
## 1478       610.6       44.6          21.1          0.0   2553.1 2014-2015
## 1479       623.7       44.4          21.8          0.0   2606.5 2014-2015
## 1480       622.2       53.7          31.7          0.0   2630.6 2014-2015
## 1481       604.8       50.0          24.3        120.0   2561.7 2014-2015
## 1482       599.6       49.8          26.1        120.0   2533.9 2014-2015
## 1483       595.9       50.4          30.2          0.0   2533.2 2014-2015
## 1484       590.4       50.0          26.0          0.0   2533.0 2014-2015
## 1485       617.8       46.4          23.4          0.0   2581.5 2014-2015
## 1486       636.5       49.3          25.5          0.0   2640.2 2014-2015
## 1487       619.7       48.5          26.4          0.0   2595.8 2014-2015
## 1488       605.8       55.0          29.9          0.0   2544.7 2014-2015
## 1489       629.7       51.1          25.8          0.0   2595.5 2014-2015
## 1490       600.5       54.7          31.2        120.0   2558.2 2014-2015
## 1491       611.6       53.4          30.4        120.0   2567.8 2014-2015
## 1492       616.2       47.5          25.0          0.0   2608.2 2014-2015
## 1493       584.4       49.8          27.8          0.0   2518.8 2014-2015
## 1494       588.9       49.2          28.0        180.0   2525.5 2014-2015
## 1495       613.6       50.8          26.4         60.0   2562.9 2014-2015
## 1496       601.4       58.2          34.3        180.0   2567.7 2014-2015
## 1497       594.2       49.1          27.4          0.0   2534.2 2014-2015
## 1498       651.4       50.7          26.5          0.0   2710.8 2014-2015
## 1499       583.5       49.4          27.8         60.0   2546.2 2014-2015
## 1500       627.9       49.9          26.4          0.0   2642.8 2014-2015
## 1501       627.1       48.9          25.7         60.0   2589.7 2014-2015
## 1502       632.9       46.9          25.0          0.0   2641.9 2014-2015
## 1503       639.7       47.7          24.1         60.0   2656.8 2014-2015
## 1504       642.7       48.8          23.4          0.0   2704.7 2014-2015
## 1505       626.9       49.7          27.3          0.0   2649.3 2014-2015
## 1506       635.9       53.3          28.7          0.0   2716.2 2014-2015
## 1507       625.5       52.1          28.2          0.0   2630.0 2014-2015
## 1508       610.4       54.5          32.2         60.0   2585.4 2014-2015
## 1509       621.9       53.4          30.6        120.0   2639.1 2014-2015
## 1510       630.1       49.0          23.9          0.0   2662.2 2014-2015
## 1511       614.3       47.6          22.8         60.0   2605.7 2014-2015
## 1512       640.2       51.8          28.2          0.0   2650.0 2014-2015
## 1513       647.4       50.9          26.6          0.0   2668.6 2014-2015
## 1514       622.2       48.7          25.8         60.0   2629.4 2014-2015
## 1515       662.5       44.6          21.7          0.0   2714.2 2014-2015
## 1516       625.3       49.3          25.0         60.0   2591.1 2014-2015
## 1517       609.0       50.1          26.2        180.0   2545.9 2014-2015
## 1518       658.5       49.4          24.0          0.0   2724.1 2014-2015
## 1519       641.5       52.7          28.4          0.0   2701.1 2014-2015
## 1520       640.2       61.8          38.0          0.0   2717.4 2014-2015
## 1521       651.9       52.0          27.0         60.0   2710.9 2014-2015
## 1522       666.9       46.6          22.1         60.0   2808.2 2014-2015
## 1523       636.4       54.8          29.7         60.0   2677.9 2014-2015
## 1524       641.6       52.0          27.7         60.0   2702.9 2014-2015
## 1525       618.0       51.4          26.1          0.0   2598.6 2014-2015
## 1526       627.1       55.5          32.0        120.0   2652.9 2014-2015
## 1527       633.4       47.1          23.7         60.0   2655.5 2014-2015
## 1528       656.4       53.2          30.9          0.0   2713.7 2014-2015
## 1529       631.6       49.5          25.9        120.0   2627.6 2014-2015
## 1530       670.1       70.2          44.5        120.0   2782.9 2014-2015
## 1531       666.0       50.8          27.0          0.0   2793.8 2014-2015
## 1532       596.3       51.2          32.9        120.0   2565.9 2014-2015
## 1533       653.0       58.0          32.5        120.0   2742.0 2014-2015
## 1534       690.9       51.8          28.6         60.0   2883.6 2014-2015
## 1535       669.8       46.8          22.2         60.0   2800.8 2014-2015
## 1536       638.0       55.4          30.5        120.0   2703.8 2014-2015
## 1537       642.3       56.0          31.0         60.0   2695.4 2014-2015
## 1538       656.7       53.3          27.8         60.0   2758.6 2014-2015
## 1539       671.0       54.9          22.6          0.0   2829.8 2014-2015
## 1540       688.6       62.2          37.2         60.0   2871.4 2014-2015
## 1541       734.0       59.8          32.3          0.0   3004.4 2014-2015
## 1542       433.6       42.7          23.0          5.0      0.0 2014-2015
## 1543       432.1       45.8          27.0          5.2      0.0 2014-2015
## 1544       444.7       42.8          24.0          5.6      0.0 2014-2015
## 1545       435.5       46.2          28.0         27.2      0.0 2014-2015
## 1546       442.6       44.1          24.0          7.3      0.0 2014-2015
## 1547       448.7       43.0          25.0          5.7      0.0 2014-2015
## 1548       448.4       42.1          23.0          5.6      0.0 2014-2015
## 1549       446.7       45.3          26.0          5.5      0.0 2014-2015
## 1550       448.6       46.2          26.0          5.4      0.0 2014-2015
## 1551       439.9       37.4          19.0         51.1      0.0 2014-2015
## 1552       451.2       42.6          23.0          5.7      0.0 2014-2015
## 1553       449.3       39.0          23.0         25.9      0.0 2014-2015
## 1554       447.6       43.3          25.0          6.0      0.0 2014-2015
## 1555       439.7       41.6          23.0         47.8      0.0 2014-2015
## 1556       451.8       49.2          31.0          5.3      0.0 2014-2015
## 1557       450.1       43.5          26.0          5.3      0.0 2014-2015
## 1558       449.8       45.6          26.0          5.2      0.0 2014-2015
## 1559       442.3       46.1          26.0          5.3      0.0 2014-2015
## 1560       449.7       52.5          33.0          6.0      0.0 2014-2015
## 1561       449.0       49.3          31.0         27.5      0.0 2014-2015
## 1562       461.9       46.5          25.0          5.6      0.0 2014-2015
## 1563       445.2       48.4          29.0         28.1      0.0 2014-2015
## 1564       449.0       50.9          32.0         28.5      0.0 2014-2015
## 1565       439.1       40.0          22.0         49.9      0.0 2014-2015
## 1566       456.0       41.3          21.0          5.6      0.0 2014-2015
## 1567       444.4       43.4          24.0         49.3      0.0 2014-2015
## 1568       446.2       46.7          28.0          5.9      0.0 2014-2015
## 1569       454.5       51.6          32.0         26.4      0.0 2014-2015
## 1570       454.6       46.6          27.0         28.4      0.0 2014-2015
## 1571       448.8       50.1          32.0          5.6      0.0 2014-2015
## 1572       460.4       43.4          23.0          5.5      0.0 2014-2015
## 1573       456.5       50.7          32.0          5.8      0.0 2014-2015
## 1574       454.0       44.5          26.0         29.0      0.0 2014-2015
## 1575       452.2       47.3          28.0         27.9      0.0 2014-2015
## 1576       466.1       50.3          31.0          5.6      0.0 2014-2015
## 1577       446.4       46.0          27.0         53.0      0.0 2014-2015
## 1578       452.9       51.6          33.0         27.2      0.0 2014-2015
## 1579       446.9       43.8          26.0         50.2      0.0 2014-2015
## 1580       451.6       49.6          29.0         27.7      0.0 2014-2015
## 1581       456.6       45.6          25.0         28.5      0.0 2014-2015
## 1582       448.7       43.8          26.0         27.8      0.0 2014-2015
## 1583       461.9       42.4          24.0          5.3      0.0 2014-2015
## 1584       450.0       45.6          26.0         28.0      0.0 2014-2015
## 1585       448.4       44.3          25.0         28.9      0.0 2014-2015
## 1586       459.6       43.2          23.0          5.5      0.0 2014-2015
## 1587       470.3       40.4          21.0          5.7      0.0 2014-2015
## 1588       445.3       42.4          23.0         51.8      0.0 2014-2015
## 1589       445.1       52.8          33.0         29.1      0.0 2014-2015
## 1590       459.1       49.8          31.0         28.7      0.0 2014-2015
## 1591       459.8       44.3          25.0          6.0      0.0 2014-2015
## 1592       446.1       46.7          27.0         27.8      0.0 2014-2015
## 1593       465.8       44.9          27.0         28.3      0.0 2014-2015
## 1594       463.5       44.5          23.0         28.9      0.0 2014-2015
## 1595       448.9       42.3          26.0         29.5      0.0 2014-2015
## 1596       465.0       45.9          26.0         27.6      0.0 2014-2015
## 1597       455.0       50.3          30.0         51.9      0.0 2014-2015
## 1598       463.1       49.0          31.0         29.5      0.0 2014-2015
## 1599       460.8       49.5          31.0         28.6      0.0 2014-2015
## 1600       461.3       49.0          30.0         28.2      0.0 2014-2015
## 1601       462.7       46.6          28.0         28.6      0.0 2014-2015
## 1602       452.6       45.9          27.0         28.6      0.0 2014-2015
## 1603       447.3       44.4          25.0          5.8      0.0 2014-2015
## 1604       450.9       52.2          32.0         50.3      0.0 2014-2015
## 1605       460.6       50.7          31.0          5.9      0.0 2014-2015
## 1606       458.0       54.1          35.0         51.6      0.0 2014-2015
## 1607       475.2       42.6          24.0         29.9      0.0 2014-2015
## 1608       468.8       41.9          22.0          5.5      0.0 2014-2015
## 1609       465.3       45.1          26.0         28.6      0.0 2014-2015
## 1610       466.0       53.7          36.0         30.2      0.0 2014-2015
## 1611       465.7       42.5          24.0         52.0      0.0 2014-2015
## 1612       481.8       50.9          31.0          6.0      0.0 2014-2015
## 1613       455.5       51.9          33.0         73.4      0.0 2014-2015
## 1614       469.1       48.9          30.0         29.5      0.0 2014-2015
## 1615       467.7       49.2          30.0         55.5      0.0 2014-2015
## 1616       470.2       48.8          30.0         28.9      0.0 2014-2015
## 1617       454.7       49.8          32.0         28.7      0.0 2014-2015
## 1618       462.7       40.9          24.0         28.6      0.0 2014-2015
## 1619       485.5       43.7          23.0         31.5      0.0 2014-2015
## 1620       468.0       40.4          21.0         54.7      0.0 2014-2015
## 1621       471.5       46.7          27.0         29.7      0.0 2014-2015
## 1622       476.7       50.3          30.0         53.4      0.0 2014-2015
## 1623       474.5       63.5          42.0         30.5      0.0 2014-2015
## 1624       471.2       50.8          30.0          6.6      0.0 2014-2015
## 1625       472.3       45.7          26.0         53.3      0.0 2014-2015
## 1626       460.8       51.1          31.0         31.3      0.0 2014-2015
## 1627       475.3       65.4          46.0         51.3      0.0 2014-2015
## 1628       469.3       48.1          28.0         78.6      0.0 2014-2015
## 1629       462.3       49.8          31.0         55.1      0.0 2014-2015
## 1630       478.5       48.4          28.0         55.4      0.0 2014-2015
## 1631       492.4       51.0          30.0         30.6      0.0 2014-2015
## 1632       506.3       51.7          29.0         55.9      0.0 2014-2015
## 1633       465.7       44.4          25.0         54.0      0.0 2014-2015
## 1634       489.9       49.5          28.0         55.7      0.0 2014-2015
## 1635       489.3       57.5          37.0          5.8      0.0 2014-2015
## 1636       461.6       42.6          23.0         53.9      0.0 2014-2015
## 1637       485.7       46.8          26.0         55.7      0.0 2014-2015
## 1638       509.9       45.4          26.0          5.8      0.0 2014-2015
## 1639       494.9       50.0          30.0         29.6      0.0 2014-2015
## 1640       483.7       68.7          46.0         81.1      0.0 2014-2015
## 1641       486.6       44.8          24.0         87.8      0.0 2014-2015
## 1642       519.7       53.0          30.0         31.5      0.0 2014-2015
## 1643       494.9       59.1          37.0        102.7      0.0 2014-2015
## 1644       386.4       41.0          26.0         27.3      0.0 2014-2015
## 1645       389.1       35.3          18.0         27.1      0.0 2014-2015
## 1646       387.3       36.2          20.0          6.0      0.0 2014-2015
## 1647       387.9       43.7          28.0          6.2      0.0 2014-2015
## 1648       388.3       40.4          25.0         27.5      0.0 2014-2015
## 1649       374.6       56.3          24.0          5.5      0.0 2014-2015
## 1650       374.9       54.2          23.0          6.3      0.0 2014-2015
## 1651       370.5       54.8          26.0          5.4      0.0 2014-2015
## 1652       372.3       54.8          25.0         27.3      0.0 2014-2015
## 1653       369.1       52.0          26.0          5.3      0.0 2014-2015
## 1654       373.9       57.0          27.0          5.4      0.0 2014-2015
## 1655       372.4       56.8          25.0          5.6      0.0 2014-2015
## 1656       378.8       58.3          25.0         28.4      0.0 2014-2015
## 1657       377.1       55.5          25.0          5.5      0.0 2014-2015
## 1658       378.8       59.9          26.0          5.3      0.0 2014-2015
## 1659       378.2       59.0          26.0          5.8      0.0 2014-2015
## 1660       365.5       52.5          21.0         28.9      0.0 2014-2015
## 1661       382.6       60.2          26.0         28.6      0.0 2014-2015
## 1662       377.4       55.0          21.0          5.3      0.0 2014-2015
## 1663       380.6       61.1          27.0          5.4      0.0 2014-2015
## 1664       374.3       61.0          30.0         49.9      0.0 2014-2015
## 1665       382.5       56.7          24.0         27.8      0.0 2014-2015
## 1666       366.2       56.2          25.0         73.6      0.0 2014-2015
## 1667       380.5       56.8          22.0          5.8      0.0 2014-2015
## 1668       378.4       59.4          24.0         51.3      0.0 2014-2015
## 1669       391.6       61.4          24.0         28.1      0.0 2014-2015
## 1670       373.9       61.4          29.0         72.2      0.0 2014-2015
## 1671       372.6       61.3          29.0         72.8      0.0 2014-2015
## 1672       389.3       64.2          27.0          5.2      0.0 2014-2015
## 1673       393.1       64.2          27.0         52.1      0.0 2014-2015
## 1674       323.2       39.3          21.0          6.7      0.0 2014-2015
## 1675       326.9       40.2          25.0          6.5      0.0 2014-2015
## 1676       335.6       39.7          24.0          7.1      0.0 2014-2015
## 1677       339.9       45.3          28.0         27.5      0.0 2014-2015
## 1678       330.5       40.3          23.0          5.8      0.0 2014-2015
## 1679       329.6       39.5          23.0          5.8      0.0 2014-2015
## 1680       332.5       40.4          24.0         27.3      0.0 2014-2015
## 1681       333.9       40.7          24.0          5.8      0.0 2014-2015
## 1682       325.5       42.3          25.0          5.6      0.0 2014-2015
## 1683       337.2       42.7          29.0         27.6      0.0 2014-2015
## 1684       331.4       38.6          22.0         26.1      0.0 2014-2015
## 1685       329.0       43.3          28.0         27.2      0.0 2014-2015
## 1686       330.0       46.4          29.0          4.7      0.0 2014-2015
## 1687       326.4       42.4          28.0         26.9      0.0 2014-2015
## 1688       332.9       45.4          29.0         27.7      0.0 2014-2015
## 1689       331.2       45.0          27.0          5.5      0.0 2014-2015
## 1690       330.1       42.6          24.0          5.2      0.0 2014-2015
## 1691       335.0       43.0          27.0         47.6      0.0 2014-2015
## 1692       335.7       44.9          26.0         27.9      0.0 2014-2015
## 1693       333.2       42.2          23.0          5.7      0.0 2014-2015
## 1694       330.7       45.1          27.0         27.3      0.0 2014-2015
## 1695       336.6       39.4          21.0         48.7      0.0 2014-2015
## 1696       334.2       38.6          22.0          7.0      0.0 2014-2015
## 1697       337.4       38.2          20.0          6.2      0.0 2014-2015
## 1698       335.6       45.0          27.0         26.9      0.0 2014-2015
## 1699       339.0       46.0          28.0         26.9      0.0 2014-2015
## 1700       333.7       41.5          25.0          6.2      0.0 2014-2015
## 1701       337.0       40.2          22.0         28.6      0.0 2014-2015
## 1702       332.1       45.7          28.0         49.5      0.0 2014-2015
## 1703       329.7       48.7          30.0         27.4      0.0 2014-2015
## 1704       334.4       46.9          28.0          6.4      0.0 2014-2015
## 1705       335.9       39.8          24.0          5.5      0.0 2014-2015
## 1706       328.2       42.9          24.0         49.5      0.0 2014-2015
## 1707       336.2       42.7          28.0          5.8      0.0 2014-2015
## 1708       344.4       48.5          30.0         27.6      0.0 2014-2015
## 1709       343.8       42.4          24.0          6.5      0.0 2014-2015
## 1710       340.1       43.6          28.0         29.9      0.0 2014-2015
## 1711       330.9       42.6          26.0          6.9      0.0 2014-2015
## 1712       349.5       38.3          20.0         29.2      0.0 2014-2015
## 1713       352.1       41.5          22.0          5.8      0.0 2014-2015
## 1714       342.3       35.7          19.0         57.2      0.0 2014-2015
## 1715       346.8       39.5          22.0         29.7      0.0 2014-2015
## 1716       339.8       46.0          28.0         28.2      0.0 2014-2015
## 1717       341.9       43.7          24.0         28.8      0.0 2014-2015
## 1718       338.7       46.7          29.0          5.3      0.0 2014-2015
## 1719       327.4       43.7          25.0          5.5      0.0 2014-2015
## 1720       349.5       42.7          25.0          5.7      0.0 2014-2015
## 1721       343.6       49.0          32.0         31.2      0.0 2014-2015
## 1722       349.2       43.8          26.0         29.1      0.0 2014-2015
## 1723       327.0       55.6          31.0        102.1      0.0 2014-2015
## 1724       354.2       38.2          21.0          5.7      0.0 2014-2015
## 1725       337.7       42.9          25.0         28.9      0.0 2014-2015
## 1726       349.8       46.1          26.0         29.5      0.0 2014-2015
## 1727       346.5       39.7          19.0         27.8      0.0 2014-2015
## 1728       355.2       46.4          27.0         53.7      0.0 2014-2015
## 1729       337.6       44.7          26.0         28.5      0.0 2014-2015
## 1730       360.9       51.9          31.0         52.1      0.0 2014-2015
## 1731       351.8       45.1          28.0         78.1      0.0 2014-2015
## 1732       358.3       39.3          22.0          6.0      0.0 2014-2015
## 1733       455.8       42.4          24.0          3.2      0.0 2014-2015
## 1734       454.1       47.3          27.0          3.2      0.0 2014-2015
## 1735       456.8       53.1          33.0         24.6      0.0 2014-2015
## 1736       465.1       47.2          26.0         24.3      0.0 2014-2015
## 1737       460.7       47.5          28.0          3.1      0.0 2014-2015
## 1738       468.4       48.1          28.0         25.6      0.0 2014-2015
## 1739       465.6       46.5          26.0          3.5      0.0 2014-2015
## 1740       470.0       49.9          29.0          3.4      0.0 2014-2015
## 1741       468.4       50.6          28.0          3.6      0.0 2014-2015
## 1742       468.1       46.5          26.0          3.3      0.0 2014-2015
## 1743       459.2       45.9          23.0         50.0      0.0 2014-2015
## 1744       467.9       48.0          25.0          3.6      0.0 2014-2015
## 1745       460.6       52.9          31.0          3.2      0.0 2014-2015
## 1746       472.5       42.3          23.0         24.0      0.0 2014-2015
## 1747       467.5       41.5          23.0         46.4      0.0 2014-2015
## 1748       472.0       48.3          28.0          3.2      0.0 2014-2015
## 1749       473.8       47.5          27.0          3.9      0.0 2014-2015
## 1750       467.5       50.9          29.0         25.0      0.0 2014-2015
## 1751       471.6       47.5          28.0          3.3      0.0 2014-2015
## 1752       477.0       53.2          32.0          3.6      0.0 2014-2015
## 1753       473.6       50.1          27.0          3.5      0.0 2014-2015
## 1754       470.8       44.9          23.0         25.7      0.0 2014-2015
## 1755       481.0       39.9          20.0          3.3      0.0 2014-2015
## 1756       470.2       45.0          25.0         25.3      0.0 2014-2015
## 1757       469.4       49.4          28.0         26.0      0.0 2014-2015
## 1758       462.6       48.2          26.0         25.4      0.0 2014-2015
## 1759       490.5       52.4          29.0          3.4      0.0 2014-2015
## 1760       467.0       49.2          26.0         46.1      0.0 2014-2015
## 1761       481.6       51.4          30.0          3.3      0.0 2014-2015
## 1762       479.4       39.8          18.0          3.7      0.0 2014-2015
## 1763       462.0       57.5          37.0         73.3      0.0 2014-2015
## 1764       477.5       55.4          35.0         27.2      0.0 2014-2015
## 1765       498.8       49.8          28.0          3.0      0.0 2014-2015
## 1766       489.5       47.0          27.0         24.4      0.0 2014-2015
## 1767       475.9       44.9          24.0         25.6      0.0 2014-2015
## 1768       492.7       46.8          25.0          3.5      0.0 2014-2015
## 1769       466.7       53.0          32.0         25.5      0.0 2014-2015
## 1770       487.7       60.9          40.0          3.4      0.0 2014-2015
## 1771       488.3       45.5          25.0          3.7      0.0 2014-2015
## 1772       481.0       48.6          27.0         25.9      0.0 2014-2015
## 1773       485.1       49.9          28.0         26.5      0.0 2014-2015
## 1774       474.9       45.3          24.0         51.4      0.0 2014-2015
## 1775       488.2       53.4          31.0          3.4      0.0 2014-2015
## 1776       477.4       51.4          30.0         48.7      0.0 2014-2015
## 1777       472.0       53.9          34.0         69.3      0.0 2014-2015
## 1778       487.3       45.9          25.0         28.6      0.0 2014-2015
## 1779       488.9       45.9          25.0         26.2      0.0 2014-2015
## 1780       488.5       53.2          31.0         26.8      0.0 2014-2015
## 1781       472.1       55.9          34.0         72.8      0.0 2014-2015
## 1782       480.4       46.3          27.0         71.0      0.0 2014-2015
## 1783       500.0       43.8          23.0         25.8      0.0 2014-2015
## 1784       498.8       43.3          20.0          3.7      0.0 2014-2015
## 1785       484.8       52.3          31.0         26.0      0.0 2014-2015
## 1786       473.7       48.6          26.0         25.6      0.0 2014-2015
## 1787       501.2       46.6          24.0         27.3      0.0 2014-2015
## 1788       491.6       51.8          33.0         25.9      0.0 2014-2015
## 1789       470.8       48.2          26.0         25.6      0.0 2014-2015
## 1790       470.9       53.2          29.0         79.5      0.0 2014-2015
## 1791       502.7       55.3          32.0          3.5      0.0 2014-2015
## 1792       498.4       56.4          32.0          3.5      0.0 2014-2015
## 1793       511.7       49.1          28.0          3.6      0.0 2014-2015
## 1794       495.4       49.2          25.0         27.4      0.0 2014-2015
## 1795       506.3       56.3          35.0          3.5      0.0 2014-2015
## 1796       488.1       50.8          28.0         25.5      0.0 2014-2015
## 1797       486.4       54.6          32.0         53.2      0.0 2014-2015
## 1798       504.5       47.3          24.0         27.4      0.0 2014-2015
## 1799       510.0       54.0          31.0          3.7      0.0 2014-2015
## 1800       472.6       48.0          26.0         72.8      0.0 2014-2015
## 1801       499.0       55.5          34.0         27.3      0.0 2014-2015
## 1802       493.3       50.2          28.0         52.2      0.0 2014-2015
## 1803       506.6       50.2          29.0         52.8      0.0 2014-2015
## 1804       483.3       59.1          35.0         77.9      0.0 2014-2015
## 1805       493.8       55.4          32.0         27.5      0.0 2014-2015
## 1806       508.7       51.4          29.0         51.2      0.0 2014-2015
## 1807       485.1       51.2          30.0         52.1      0.0 2014-2015
## 1808       507.5       59.1          37.0         26.2      0.0 2014-2015
## 1809       485.5       54.5          32.0         49.9      0.0 2014-2015
## 1810       496.0       51.9          29.0         25.7      0.0 2014-2015
## 1811       509.6       46.2          22.0         54.9      0.0 2014-2015
## 1812       510.4       47.5          24.0         27.0      0.0 2014-2015
## 1813       515.0       48.9          25.0          3.8      0.0 2014-2015
## 1814       503.1       52.3          29.0         51.2      0.0 2014-2015
## 1815       505.5       49.1          26.0          3.7      0.0 2014-2015
## 1816       514.6       60.6          40.0         25.5      0.0 2014-2015
## 1817       505.0       49.7          28.0         50.6      0.0 2014-2015
## 1818       493.5       56.3          38.0         50.5      0.0 2014-2015
## 1819       513.2       55.0          31.0         28.1      0.0 2014-2015
## 1820       538.2       49.0          26.0          3.5      0.0 2014-2015
## 1821       494.0       43.1          23.0         26.4      0.0 2014-2015
## 1822       525.8       55.9          32.0         29.6      0.0 2014-2015
## 1823       506.6       47.0          25.0         51.8      0.0 2014-2015
## 1824       529.7       49.8          26.0         55.4      0.0 2014-2015
## 1825       509.1       52.7          31.0         78.1      0.0 2014-2015
## 1826       507.5       53.7          31.0         77.2      0.0 2014-2015
## 1827       537.2       55.3          34.0          3.4      0.0 2014-2015
## 1828       537.9       49.1          26.0         27.8      0.0 2014-2015
## 1829       520.6       62.3          38.0         52.7      0.0 2014-2015
## 1830       534.7       61.6          39.0          3.6      0.0 2014-2015
## 1831       536.5       62.7          40.0          3.7      0.0 2014-2015
## 1832       393.8       43.5          25.0          3.5      0.0 2014-2015
## 1833       393.3       43.5          26.0          3.6      0.0 2014-2015
## 1834       390.3       47.4          29.0          3.2      0.0 2014-2015
## 1835       383.8       42.5          23.0          3.3      0.0 2014-2015
## 1836       386.7       40.3          21.0          3.3      0.0 2014-2015
## 1837       389.4       46.1          29.0         23.0      0.0 2014-2015
## 1838       393.8       44.4          24.0         22.4      0.0 2014-2015
## 1839       395.5       40.0          20.0         23.9      0.0 2014-2015
## 1840       387.5       45.6          26.0          2.8      0.0 2014-2015
## 1841       389.1       45.7          27.0          3.4      0.0 2014-2015
## 1842       388.3       43.1          25.0         23.4      0.0 2014-2015
## 1843       387.1       44.9          25.0         23.4      0.0 2014-2015
## 1844       393.7       52.5          31.0          3.2      0.0 2014-2015
## 1845       395.8       47.8          29.0          3.3      0.0 2014-2015
## 1846       392.9       46.5          27.0         24.2      0.0 2014-2015
## 1847       397.3       44.5          24.0         24.4      0.0 2014-2015
## 1848       407.5       43.0          23.0          3.3      0.0 2014-2015
## 1849       414.2       46.6          27.0          3.2      0.0 2014-2015
## 1850       392.1       46.2          27.0         44.0      0.0 2014-2015
## 1851       395.8       46.4          26.0         63.4      0.0 2014-2015
## 1852       397.7       40.2          22.0          3.3      0.0 2014-2015
## 1853       389.4       46.2          27.0         66.5      0.0 2014-2015
## 1854       397.4       50.9          32.0         45.5      0.0 2014-2015
## 1855       404.5       50.1          31.0         23.0      0.0 2014-2015
## 1856       404.3       44.8          25.0         23.8      0.0 2014-2015
## 1857       399.9       40.5          22.0         24.9      0.0 2014-2015
## 1858       409.9       47.1          27.0          3.2      0.0 2014-2015
## 1859       411.8       43.8          25.0         23.9      0.0 2014-2015
## 1860       403.9       44.8          25.0         67.5      0.0 2014-2015
## 1861       412.0       46.1          27.0         44.0      0.0 2014-2015
## 1862       420.4       44.9          24.0          8.3      0.0 2015-2016
## 1863       424.5       42.6          21.0          8.5      0.0 2015-2016
## 1864       425.2       51.8          32.0          8.4      0.0 2015-2016
## 1865       425.4       45.8          25.0          7.5      0.0 2015-2016
## 1866       420.1       44.9          25.0         27.7      0.0 2015-2016
## 1867       429.4       48.1          27.0          8.3      0.0 2015-2016
## 1868       423.9       49.5          28.0          8.8      0.0 2015-2016
## 1869       416.4       46.0          27.0         28.2      0.0 2015-2016
## 1870       429.1       46.0          26.0          8.3      0.0 2015-2016
## 1871       428.4       47.5          27.0          8.2      0.0 2015-2016
## 1872       423.4       54.7          33.0          8.1      0.0 2015-2016
## 1873       422.7       63.4          38.0         19.7      0.0 2015-2016
## 1874       438.6       52.3          30.0          5.9      0.0 2015-2016
## 1875       421.0       50.7          29.0         27.7      0.0 2015-2016
## 1876       430.2       49.2          28.0         28.4      0.0 2015-2016
## 1877       431.2       54.2          34.0          8.9      0.0 2015-2016
## 1878       434.1       47.1          27.0         27.8      0.0 2015-2016
## 1879       422.3       44.3          24.0         28.1      0.0 2015-2016
## 1880       433.7       41.1          22.0         25.3      0.0 2015-2016
## 1881       430.8       45.5          25.0         28.3      0.0 2015-2016
## 1882       433.0       50.6          30.0         27.3      0.0 2015-2016
## 1883       419.8       44.8          25.0         28.2      0.0 2015-2016
## 1884       431.1       41.2          22.0          8.1      0.0 2015-2016
## 1885       438.5       45.5          25.0         28.1      0.0 2015-2016
## 1886       430.9       52.0          31.0         29.9      0.0 2015-2016
## 1887       437.7       48.9          27.0          9.2      0.0 2015-2016
## 1888       422.8       49.8          29.0         69.4      0.0 2015-2016
## 1889       422.3       46.0          25.0         28.9      0.0 2015-2016
## 1890       426.1       50.2          31.0         47.9      0.0 2015-2016
## 1891       437.5       52.8          30.0          8.6      0.0 2015-2016
## 1892       438.5       41.6          21.0         30.4      0.0 2015-2016
## 1893       427.3       47.3          25.0         50.1      0.0 2015-2016
## 1894       432.9       46.1          23.0         28.7      0.0 2015-2016
## 1895       422.3       54.5          31.0         26.8      0.0 2015-2016
## 1896       430.3       46.4          27.0         28.4      0.0 2015-2016
## 1897       424.3       61.5          41.0         47.1      0.0 2015-2016
## 1898       424.0       56.4          36.0         48.2      0.0 2015-2016
## 1899       429.0       48.5          27.0         50.1      0.0 2015-2016
## 1900       436.0       47.7          26.0         29.4      0.0 2015-2016
## 1901       428.9       51.7          31.0         51.4      0.0 2015-2016
## 1902       431.9       46.2          25.0          8.3      0.0 2015-2016
## 1903       441.8       57.1          35.0          8.6      0.0 2015-2016
## 1904       442.3       48.0          27.0         29.4      0.0 2015-2016
## 1905       436.2       48.2          27.0         29.0      0.0 2015-2016
## 1906       420.9       44.0          23.0         51.0      0.0 2015-2016
## 1907       435.1       50.0          30.0         49.5      0.0 2015-2016
## 1908       429.0       53.6          31.0         52.7      0.0 2015-2016
## 1909       438.5       48.1          27.0         28.4      0.0 2015-2016
## 1910       448.6       48.6          27.0          8.1      0.0 2015-2016
## 1911       442.8       61.9          39.0         29.0      0.0 2015-2016
## 1912       441.5       53.1          31.0         29.3      0.0 2015-2016
## 1913       443.4       53.4          32.0         30.2      0.0 2015-2016
## 1914       445.0       49.7          28.0         31.1      0.0 2015-2016
## 1915       440.4       44.3          24.0          8.1      0.0 2015-2016
## 1916       443.3       48.4          26.0          8.4      0.0 2015-2016
## 1917       437.7       44.9          22.0         30.2      0.0 2015-2016
## 1918       448.3       47.1          24.0         28.8      0.0 2015-2016
## 1919       438.1       46.4          25.0         29.6      0.0 2015-2016
## 1920       444.2       48.2          26.0          8.6      0.0 2015-2016
## 1921       452.9       54.7          30.0          9.1      0.0 2015-2016
## 1922       453.4       46.5          23.0         32.8      0.0 2015-2016
## 1923       427.4       49.8          28.0         29.9      0.0 2015-2016
## 1924       462.8       46.7          24.0         30.1      0.0 2015-2016
## 1925       449.4       51.0          29.0         29.5      0.0 2015-2016
## 1926       446.6       43.2          21.0         28.8      0.0 2015-2016
## 1927       445.5       45.4          24.0         51.3      0.0 2015-2016
## 1928       436.3       54.9          34.0         50.3      0.0 2015-2016
## 1929       462.1       48.4          26.0          8.5      0.0 2015-2016
## 1930       441.8       57.2          34.0         32.0      0.0 2015-2016
## 1931       428.5       55.3          34.0         91.7      0.0 2015-2016
## 1932       454.1       48.7          27.0         29.3      0.0 2015-2016
## 1933       452.9       52.6          29.0         28.9      0.0 2015-2016
## 1934       455.0       55.8          36.0         29.5      0.0 2015-2016
## 1935       453.4       48.6          25.0         29.5      0.0 2015-2016
## 1936       449.7       55.1          33.0         50.3      0.0 2015-2016
## 1937       450.8       54.3          31.0         51.0      0.0 2015-2016
## 1938       432.0       50.4          29.0         74.8      0.0 2015-2016
## 1939       443.6       52.0          31.0         52.6      0.0 2015-2016
## 1940       447.8       46.7          23.0         30.1      0.0 2015-2016
## 1941       428.6       51.1          29.0         74.1      0.0 2015-2016
## 1942       435.3       66.0          45.0         50.9      0.0 2015-2016
## 1943       463.6       45.5          25.0          8.6      0.0 2015-2016
## 1944       455.0       57.6          35.0          9.3      0.0 2015-2016
## 1945       462.8       48.0          27.0          9.3      0.0 2015-2016
## 1946       437.8       47.1          26.0         30.0      0.0 2015-2016
## 1947       456.9       51.4          29.0         31.3      0.0 2015-2016
## 1948       433.8       53.3          30.0         30.8      0.0 2015-2016
## 1949       460.7       52.0          28.0         31.8      0.0 2015-2016
## 1950       437.8       48.1          27.0         75.8      0.0 2015-2016
## 1951       449.3       50.1          29.0         50.1      0.0 2015-2016
## 1952       456.1       50.3          29.0          8.2      0.0 2015-2016
## 1953       448.6       58.0          36.0         29.0      0.0 2015-2016
## 1954       450.2       54.1          31.0         53.5      0.0 2015-2016
## 1955       454.9       48.1          25.0         50.8      0.0 2015-2016
## 1956       456.5       58.5          35.0         30.3      0.0 2015-2016
## 1957       468.1       51.0          27.0         29.8      0.0 2015-2016
## 1958       471.1       50.6          27.0         32.7      0.0 2015-2016
## 1959       456.4       56.9          33.0         77.7      0.0 2015-2016
## 1960       455.1       59.5          38.0         56.9      0.0 2015-2016
## 1961       471.1       51.0          27.0         53.8      0.0 2015-2016
## 1962       479.3       50.2          27.0         32.0      0.0 2015-2016
## 1963       489.4       49.8          28.0          8.8      0.0 2015-2016
## 1964       481.8       51.5          31.0          9.4      0.0 2015-2016
## 1965       472.0       60.6          36.0         54.7      0.0 2015-2016
## 1966       470.8       63.6          39.0         55.3      0.0 2015-2016
## 1967       495.0       70.8          48.0          8.8      0.0 2015-2016
## 1968       333.9       42.6          23.0         27.1      0.0 2015-2016
## 1969       338.4       48.2          29.0         28.7      0.0 2015-2016
## 1970       337.8       41.4          24.0          9.1      0.0 2015-2016
## 1971       329.6       41.9          24.0          8.6      0.0 2015-2016
## 1972       337.6       46.3          27.0          8.6      0.0 2015-2016
## 1973       346.3       43.3          23.0         30.0      0.0 2015-2016
## 1974       331.2       42.2          23.0          8.3      0.0 2015-2016
## 1975       342.6       47.6          29.0         28.4      0.0 2015-2016
## 1976       333.3       45.5          25.0          8.6      0.0 2015-2016
## 1977       330.1       46.4          27.0         28.0      0.0 2015-2016
## 1978       330.1       44.3          25.0          8.1      0.0 2015-2016
## 1979       338.6       49.3          29.0          8.8      0.0 2015-2016
## 1980       336.3       48.0          29.0          8.0      0.0 2015-2016
## 1981       336.4       48.0          26.0          8.2      0.0 2015-2016
## 1982       342.3       46.2          26.0         27.8      0.0 2015-2016
## 1983       331.2       48.2          29.0         28.4      0.0 2015-2016
## 1984       339.3       47.0          27.0         50.1      0.0 2015-2016
## 1985       341.7       42.4          23.0         28.8      0.0 2015-2016
## 1986       343.6       44.5          25.0         27.7      0.0 2015-2016
## 1987       327.3       46.9          27.0          8.0      0.0 2015-2016
## 1988       336.0       47.3          27.0         47.3      0.0 2015-2016
## 1989       338.2       46.4          27.0         28.3      0.0 2015-2016
## 1990       339.9       54.3          34.0         29.5      0.0 2015-2016
## 1991       340.6       49.4          30.0          9.5      0.0 2015-2016
## 1992       336.3       47.6          27.0         47.2      0.0 2015-2016
## 1993       332.1       40.9          21.0         29.5      0.0 2015-2016
## 1994       338.4       50.3          31.0         66.1      0.0 2015-2016
## 1995       339.9       45.8          26.0         30.4      0.0 2015-2016
## 1996       341.4       44.7          25.0         29.6      0.0 2015-2016
## 1997       338.9       42.2          23.0         28.5      0.0 2015-2016
## 1998       342.5       44.7          25.0         30.1      0.0 2015-2016
## 1999       343.2       44.9          25.0          8.8      0.0 2015-2016
## 2000       338.9       46.7          27.0         50.0      0.0 2015-2016
## 2001       349.2       48.9          30.0         48.5      0.0 2015-2016
## 2002       346.9       47.8          27.0          8.7      0.0 2015-2016
## 2003       339.2       44.9          24.0         30.8      0.0 2015-2016
## 2004       337.4       57.5          37.0         51.3      0.0 2015-2016
## 2005       338.8       50.4          30.0          8.8      0.0 2015-2016
## 2006       348.5       46.6          25.0          9.5      0.0 2015-2016
## 2007       346.7       44.5          23.0         30.6      0.0 2015-2016
## 2008       343.2       46.6          25.0         31.4      0.0 2015-2016
## 2009       341.1       47.8          27.0          8.8      0.0 2015-2016
## 2010       340.5       43.4          25.0         30.0      0.0 2015-2016
## 2011       349.7       44.9          25.0         31.5      0.0 2015-2016
## 2012       340.6       41.1          20.0         53.1      0.0 2015-2016
## 2013       339.1       43.7          23.0         29.6      0.0 2015-2016
## 2014       360.7       47.3          25.0          8.7      0.0 2015-2016
## 2015       361.4       44.3          23.0          8.5      0.0 2015-2016
## 2016       350.3       44.1          23.0         29.2      0.0 2015-2016
## 2017       373.2       45.9          24.0         31.8      0.0 2015-2016
## 2018       368.1       53.0          31.0         32.9      0.0 2015-2016
## 2019       361.7       55.9          34.0         74.7      0.0 2015-2016
## 2020       437.5       41.4            NA          8.1      0.0 2015-2016
## 2021       448.2       41.4            NA          7.9      0.0 2015-2016
## 2022       447.3       41.5            NA          8.3      0.0 2015-2016
## 2023       447.4       44.1            NA         27.5      0.0 2015-2016
## 2024       456.8       45.4            NA         26.7      0.0 2015-2016
## 2025       466.3       38.3            NA          7.9      0.0 2015-2016
## 2026       460.5       41.0            NA          9.1      0.0 2015-2016
## 2027       454.0       43.1            NA          7.4      0.0 2015-2016
## 2028       464.7       40.2            NA          8.5      0.0 2015-2016
## 2029       454.4       39.9            NA         27.9      0.0 2015-2016
## 2030       466.1       43.9            NA          9.1      0.0 2015-2016
## 2031       457.3       43.1            NA         30.3      0.0 2015-2016
## 2032       458.5       45.6            NA          8.5      0.0 2015-2016
## 2033       455.2       45.3            NA         29.5      0.0 2015-2016
## 2034       464.0       40.4            NA         28.5      0.0 2015-2016
## 2035       456.9       49.8            NA         28.7      0.0 2015-2016
## 2036       463.1       48.5            NA          8.7      0.0 2015-2016
## 2037       488.7       47.9            NA         27.6      0.0 2015-2016
## 2038       474.2       45.7            NA          9.1      0.0 2015-2016
## 2039       471.9       40.9            NA          8.8      0.0 2015-2016
## 2040       459.1       39.4            NA         50.8      0.0 2015-2016
## 2041       472.2       40.6            NA          9.4      0.0 2015-2016
## 2042       457.3       50.1            NA         47.4      0.0 2015-2016
## 2043       460.2       45.6            NA         50.5      0.0 2015-2016
## 2044       478.4       48.9            NA          9.9      0.0 2015-2016
## 2045       471.1       42.7            NA          8.2      0.0 2015-2016
## 2046       465.0       46.0            NA         27.9      0.0 2015-2016
## 2047       447.8       45.7            NA         30.5      0.0 2015-2016
## 2048       470.9       46.8            NA         29.4      0.0 2015-2016
## 2049       469.2       45.3            NA          9.2      0.0 2015-2016
## 2050       468.7       44.2            NA          8.9      0.0 2015-2016
## 2051       469.3       46.8            NA          8.7      0.0 2015-2016
## 2052       462.6       46.7            NA         29.5      0.0 2015-2016
## 2053       476.1       42.7            NA          8.9      0.0 2015-2016
## 2054       468.5       42.3            NA         28.7      0.0 2015-2016
## 2055       467.5       43.7            NA         28.8      0.0 2015-2016
## 2056       470.7       46.9            NA         29.1      0.0 2015-2016
## 2057       474.4       43.1            NA         27.9      0.0 2015-2016
## 2058       462.5       44.6            NA         49.6      0.0 2015-2016
## 2059       478.6       42.5            NA         29.7      0.0 2015-2016
## 2060       465.2       45.2            NA         48.4      0.0 2015-2016
## 2061       473.7       47.1            NA         30.5      0.0 2015-2016
## 2062       469.2       52.1            NA         28.5      0.0 2015-2016
## 2063       493.9       38.7            NA          9.3      0.0 2015-2016
## 2064       456.9       45.2            NA         50.1      0.0 2015-2016
## 2065       458.1       41.6            NA         72.0      0.0 2015-2016
## 2066       471.3       45.0            NA         31.1      0.0 2015-2016
## 2067       474.2       45.3            NA         31.0      0.0 2015-2016
## 2068       474.6       47.3            NA         29.5      0.0 2015-2016
## 2069       470.2       46.7            NA         52.2      0.0 2015-2016
## 2070       478.5       46.0            NA         31.9      0.0 2015-2016
## 2071       482.9       44.5            NA         29.9      0.0 2015-2016
## 2072       489.1       43.0            NA         30.8      0.0 2015-2016
## 2073       476.6       49.4            NA         32.2      0.0 2015-2016
## 2074       470.8       48.9            NA          8.8      0.0 2015-2016
## 2075       470.9       44.4            NA         50.1      0.0 2015-2016
## 2076       482.3       48.4            NA         31.6      0.0 2015-2016
## 2077       491.7       47.6            NA         49.9      0.0 2015-2016
## 2078       501.3       48.9            NA          9.8      0.0 2015-2016
## 2079       481.9       45.9            NA          9.0      0.0 2015-2016
## 2080       480.3       43.9            NA         32.4      0.0 2015-2016
## 2081       471.5       47.5            NA         29.6      0.0 2015-2016
## 2082       490.1       49.8            NA         50.7      0.0 2015-2016
## 2083       488.4       43.5            NA          9.1      0.0 2015-2016
## 2084       494.6       44.0            NA          8.3      0.0 2015-2016
## 2085       464.5       52.1            NA         97.7      0.0 2015-2016
## 2086       506.7       44.7            NA          9.6      0.0 2015-2016
## 2087       487.2       42.7            NA         31.2      0.0 2015-2016
## 2088       502.4       42.3            NA          9.4      0.0 2015-2016
## 2089       488.1       50.3            NA         56.9      0.0 2015-2016
## 2090       501.6       44.2            NA         33.1      0.0 2015-2016
## 2091       490.9       45.5            NA         33.0      0.0 2015-2016
## 2092       493.7       47.8            NA         31.8      0.0 2015-2016
## 2093       493.4       49.5            NA         56.0      0.0 2015-2016
## 2094       480.3       47.0            NA         53.3      0.0 2015-2016
## 2095       493.8       47.8            NA         31.3      0.0 2015-2016
## 2096       487.4       43.3            NA         55.1      0.0 2015-2016
## 2097       489.7       60.9            NA         56.2      0.0 2015-2016
## 2098       486.6       79.8            NA         55.5      0.0 2015-2016
## 2099       515.2       46.7            NA         32.3      0.0 2015-2016
## 2100       517.3       48.3            NA         32.8      0.0 2015-2016
## 2101       511.9       48.1            NA         58.2      0.0 2015-2016
## 2102       521.5       50.4            NA         10.5      0.0 2015-2016
## 2103       484.1       60.5            NA         98.8      0.0 2015-2016
## 2104       527.5       47.8            NA          9.5      0.0 2015-2016
## 2105       523.3       60.3            NA         60.8      0.0 2015-2016
## 2106       548.1       50.4            NA         67.1      0.0 2015-2016
## 2107       433.2       41.2          24.1         27.9      0.0 2015-2016
## 2108       433.3       44.9          28.3         31.1      0.0 2015-2016
## 2109       433.3       40.7          26.0         34.0      0.0 2015-2016
## 2110       438.8       45.9          27.6         32.0      0.0 2015-2016
## 2111       431.2       49.3          31.6         30.2      0.0 2015-2016
## 2112       424.4       40.4          39.6         31.3      0.0 2015-2016
## 2113       438.1       47.7          47.2         30.3      0.0 2015-2016
## 2114       437.6       45.1          25.4         31.1      0.0 2015-2016
## 2115       450.9       42.5          22.7          9.8      0.0 2015-2016
## 2116       454.3       45.9          25.0          8.9      0.0 2015-2016
## 2117       442.6       43.2          23.4          9.5      0.0 2015-2016
## 2118       433.1       45.0          25.8         53.4      0.0 2015-2016
## 2119       437.7       45.2          25.2         32.8      0.0 2015-2016
## 2120       443.8       44.3          24.5         33.1      0.0 2015-2016
## 2121       431.0       42.3          22.1         53.9      0.0 2015-2016
## 2122       449.2       41.8          24.5         32.5      0.0 2015-2016
## 2123       433.9       45.2          20.4         55.9      0.0 2015-2016
## 2124       442.4       45.5          26.8         32.1      0.0 2015-2016
## 2125       456.2       37.8          19.8          9.3      0.0 2015-2016
## 2126       454.6       45.3          25.8         32.1      0.0 2015-2016
## 2127       447.6       43.4          25.4         53.2      0.0 2015-2016
## 2128       437.7       47.5          29.1          9.4      0.0 2015-2016
## 2129       456.3       48.0          26.8         32.4      0.0 2015-2016
## 2130       458.1       44.4          22.8         33.5      0.0 2015-2016
## 2131       450.6       45.7          26.3         54.9      0.0 2015-2016
## 2132       447.6       55.9          38.0         31.5      0.0 2015-2016
## 2133       462.6       41.8          23.6          9.6      0.0 2015-2016
## 2134       467.2       49.2          30.4         57.3      0.0 2015-2016
## 2135       478.2       42.5          24.0         10.2      0.0 2015-2016
## 2136       457.8       46.7          28.3         59.2      0.0 2015-2016
## 2137       453.9       49.5          26.0          4.7      0.0 2015-2016
## 2138       442.2       48.2          26.0          4.5      0.0 2015-2016
## 2139       453.8       47.0          25.0          4.7      0.0 2015-2016
## 2140       447.6       46.6          24.0          4.5      0.0 2015-2016
## 2141       460.7       46.5          22.0          4.8      0.0 2015-2016
## 2142       456.8       45.3          22.0          4.8      0.0 2015-2016
## 2143       459.4       46.6          23.0         26.5      0.0 2015-2016
## 2144       457.2       48.8          26.0         26.8      0.0 2015-2016
## 2145       462.5       55.8          31.0          4.6      0.0 2015-2016
## 2146       452.2       47.9          23.0          5.4      0.0 2015-2016
## 2147       448.2       43.7          20.0         25.5      0.0 2015-2016
## 2148       462.0       48.8          23.0          4.9      0.0 2015-2016
## 2149       452.7       54.4          30.0         27.0      0.0 2015-2016
## 2150       457.4       46.1          22.0         26.8      0.0 2015-2016
## 2151       462.5       55.3          32.0          4.7      0.0 2015-2016
## 2152       455.5       50.2          27.0         26.1      0.0 2015-2016
## 2153       460.4       51.5          27.0          5.0      0.0 2015-2016
## 2154       458.9       45.4          22.0         26.3      0.0 2015-2016
## 2155       461.4       46.3          23.0          5.0      0.0 2015-2016
## 2156       460.9       47.0          24.0          5.0      0.0 2015-2016
## 2157       462.5       49.5          27.0          4.7      0.0 2015-2016
## 2158       455.3       49.3          25.0         25.9      0.0 2015-2016
## 2159       460.2       56.4          34.0         25.0      0.0 2015-2016
## 2160       465.9       47.9          25.0          5.0      0.0 2015-2016
## 2161       457.5       48.5          25.0         26.7      0.0 2015-2016
## 2162       460.2       49.9          25.0         48.1      0.0 2015-2016
## 2163       459.7       49.9          27.0         45.7      0.0 2015-2016
## 2164       467.6       51.2          28.0         27.4      0.0 2015-2016
## 2165       468.5       50.0          25.0          5.0      0.0 2015-2016
## 2166       458.8       46.8          23.0         46.2      0.0 2015-2016
## 2167       479.3       51.2          27.0          4.4      0.0 2015-2016
## 2168       463.4       50.7          26.0         50.7      0.0 2015-2016
## 2169       481.1       51.9          26.0          4.6      0.0 2015-2016
## 2170       463.3       52.9          29.0         26.7      0.0 2015-2016
## 2171       465.5       48.0          25.0         26.9      0.0 2015-2016
## 2172       456.4       56.0          31.0         46.8      0.0 2015-2016
## 2173       471.5       52.8          28.0         46.8      0.0 2015-2016
## 2174       470.8       48.0          23.0          5.0      0.0 2015-2016
## 2175       467.4       53.3          30.0         26.3      0.0 2015-2016
## 2176       458.5       49.2          25.0         50.1      0.0 2015-2016
## 2177       464.6       53.0          29.0         50.4      0.0 2015-2016
## 2178       461.1       51.3          29.0         25.0      0.0 2015-2016
## 2179       464.2       56.6          33.0         50.4      0.0 2015-2016
## 2180       463.4       56.6          31.0         26.2      0.0 2015-2016
## 2181       462.3       54.7          30.0         51.6      0.0 2015-2016
## 2182       478.5       51.5          27.0         28.1      0.0 2015-2016
## 2183       466.2       53.5          28.0         28.1      0.0 2015-2016
## 2184       483.6       46.1          22.0          5.1      0.0 2015-2016
## 2185       475.5       57.0          34.0         27.1      0.0 2015-2016
## 2186       474.7       50.5          26.0         26.7      0.0 2015-2016
## 2187       475.7       49.5          25.0          4.9      0.0 2015-2016
## 2188       477.4       54.9          29.0         26.4      0.0 2015-2016
## 2189       484.7       49.7          25.0          5.7      0.0 2015-2016
## 2190       476.5       52.5          27.0         27.4      0.0 2015-2016
## 2191       471.5       49.9          27.0         48.9      0.0 2015-2016
## 2192       465.5       51.7          27.0         27.6      0.0 2015-2016
## 2193       477.6       55.3          32.0          4.9      0.0 2015-2016
## 2194       471.8       50.3          25.0         48.9      0.0 2015-2016
## 2195       473.5       61.9          35.0          5.3      0.0 2015-2016
## 2196       479.8       54.1          28.0         27.3      0.0 2015-2016
## 2197       469.1       54.3          32.0         46.3      0.0 2015-2016
## 2198       472.4       62.3          37.0         27.3      0.0 2015-2016
## 2199       469.8       52.5          29.0         28.1      0.0 2015-2016
## 2200       475.3       51.4          25.0         48.4      0.0 2015-2016
## 2201       477.9       61.2          34.0         29.8      0.0 2015-2016
## 2202       466.6       52.9          26.0         27.4      0.0 2015-2016
## 2203       478.4       51.7          27.0         49.6      0.0 2015-2016
## 2204       476.5       57.0          33.0         28.9      0.0 2015-2016
## 2205       473.0       58.0          31.0         27.9      0.0 2015-2016
## 2206       470.0       54.7          29.0         74.4      0.0 2015-2016
## 2207       482.6       57.8          33.0         26.7      0.0 2015-2016
## 2208       457.4       65.2          42.0         70.9      0.0 2015-2016
## 2209       471.9       57.6          34.0          4.6      0.0 2015-2016
## 2210       490.0       56.9          31.0         29.1      0.0 2015-2016
## 2211       464.2       60.9          37.0         49.2      0.0 2015-2016
## 2212       462.7       52.6          27.0         70.8      0.0 2015-2016
## 2213       465.9       55.0          30.0         75.0      0.0 2015-2016
## 2214       477.6       58.7          32.0         49.6      0.0 2015-2016
## 2215       484.3       52.7          27.0         52.0      0.0 2015-2016
## 2216       469.4       54.8          29.0         49.2      0.0 2015-2016
## 2217       487.8       53.9          27.0         54.0      0.0 2015-2016
## 2218       477.4       57.4          33.0         28.7      0.0 2015-2016
## 2219       472.5       52.0          27.0         75.5      0.0 2015-2016
## 2220       484.0       50.6          25.0         53.8      0.0 2015-2016
## 2221       465.5       53.9          29.0         52.1      0.0 2015-2016
## 2222       480.6       52.1          28.0         51.9      0.0 2015-2016
## 2223       470.6       49.3          27.0         28.1      0.0 2015-2016
## 2224       478.2       58.3          32.0         75.6      0.0 2015-2016
## 2225       478.6       53.0          28.0         27.8      0.0 2015-2016
## 2226       480.1       47.2          23.0         26.4      0.0 2015-2016
## 2227       480.1       55.4          30.0         51.7      0.0 2015-2016
## 2228       496.6       58.2          33.0         50.7      0.0 2015-2016
## 2229       480.4       56.1          29.0         73.1      0.0 2015-2016
## 2230       494.9       62.5          37.0         28.8      0.0 2015-2016
## 2231       492.0       52.5          27.0         28.2      0.0 2015-2016
## 2232       486.2       54.5          27.0         52.2      0.0 2015-2016
## 2233       486.1       68.9          42.0         50.0      0.0 2015-2016
## 2234       495.7       55.1          30.0         27.0      0.0 2015-2016
## 2235       485.2       47.3          21.0         78.2      0.0 2015-2016
## 2236       494.1       50.1          24.0         29.6      0.0 2015-2016
## 2237       499.5       56.1          29.0         31.2      0.0 2015-2016
## 2238       489.7       54.9          28.0         51.3      0.0 2015-2016
## 2239       481.3       68.6          41.0         28.6      0.0 2015-2016
## 2240       498.7       52.6          27.0         55.9      0.0 2015-2016
## 2241       498.1       81.4          54.0         74.2      0.0 2015-2016
## 2242       502.8       59.2          33.0         74.3      0.0 2015-2016
## 2243       496.1       54.2          25.0         31.3      0.0 2015-2016
## 2244       549.7       56.2          30.0         80.7      0.0 2015-2016
## 2245       330.4       42.9          20.0          5.7      0.0 2015-2016
## 2246       335.4       47.9          25.0          5.1      0.0 2015-2016
## 2247       330.2       46.9          24.0          5.0      0.0 2015-2016
## 2248       330.3       47.0          23.0         26.1      0.0 2015-2016
## 2249       328.1       50.1          25.0          5.4      0.0 2015-2016
## 2250       334.0       48.1          25.0         26.6      0.0 2015-2016
## 2251       332.8       52.3          30.0         27.4      0.0 2015-2016
## 2252       333.8       44.0          21.0          5.2      0.0 2015-2016
## 2253       343.3       49.5          26.0          4.8      0.0 2015-2016
## 2254       332.7       48.5          26.0         25.1      0.0 2015-2016
## 2255       337.0       49.0          25.0          5.2      0.0 2015-2016
## 2256       336.5       45.5          21.0         49.1      0.0 2015-2016
## 2257       339.1       51.0          24.0          5.0      0.0 2015-2016
## 2258       336.6       48.7          27.0         27.8      0.0 2015-2016
## 2259       340.1       46.5          24.0          4.9      0.0 2015-2016
## 2260       336.5       46.0          22.0         27.0      0.0 2015-2016
## 2261       339.2       53.3          29.0         27.1      0.0 2015-2016
## 2262       332.2       45.5          25.0         49.5      0.0 2015-2016
## 2263       335.1       57.3          34.0         47.8      0.0 2015-2016
## 2264       341.0       48.4          27.0          4.7      0.0 2015-2016
## 2265       342.9       52.8          33.0          4.3      0.0 2015-2016
## 2266       348.4       48.4          28.0          4.5      0.0 2015-2016
## 2267       336.3       45.6          23.0         49.9      0.0 2015-2016
## 2268       337.5       49.7          30.0          4.9      0.0 2015-2016
## 2269       346.2       49.3          29.0          4.5      0.0 2015-2016
## 2270       341.8       62.8          38.0         25.9      0.0 2015-2016
## 2271       340.5       49.2          26.0         47.9      0.0 2015-2016
## 2272       338.8       49.7          28.0          5.7      0.0 2015-2016
## 2273       333.2       48.3          28.0         26.2      0.0 2015-2016
## 2274       334.6       49.5          27.0         88.1      0.0 2015-2016
## 2275       345.9       46.6          26.0         50.2      0.0 2015-2016
## 2276       347.0       47.4          27.0         48.1      0.0 2015-2016
## 2277       352.9       60.1          36.0          5.4      0.0 2015-2016
## 2278       345.6       51.9          27.0          5.5      0.0 2015-2016
## 2279       339.2       48.3          24.0         51.3      0.0 2015-2016
## 2280       349.5       47.9          23.0          4.9      0.0 2015-2016
## 2281       349.1       49.8          28.0         51.4      0.0 2015-2016
## 2282       340.0       51.1          26.0         27.1      0.0 2015-2016
## 2283       349.5       53.3          29.0          4.9      0.0 2015-2016
## 2284       342.8       48.4          24.0         26.2      0.0 2015-2016
## 2285       355.3       51.9          27.0         27.5      0.0 2015-2016
## 2286       353.5       54.6          30.0          4.6      0.0 2015-2016
## 2287       343.0       47.6          23.0         46.6      0.0 2015-2016
## 2288       354.7       49.4          26.0         53.7      0.0 2015-2016
## 2289       351.1       49.1          26.0          4.7      0.0 2015-2016
## 2290       356.4       48.6          26.0          4.4      0.0 2015-2016
## 2291       348.9       50.2          24.0         28.0      0.0 2015-2016
## 2292       348.7       54.0          31.0         50.3      0.0 2015-2016
## 2293       350.5       52.0          26.0         50.2      0.0 2015-2016
## 2294       349.9       52.0          30.0         29.6      0.0 2015-2016
## 2295       354.2       51.5          32.0         28.1      0.0 2015-2016
## 2296       359.9       42.6          20.0         29.8      0.0 2015-2016
## 2297       356.7       48.2          25.0         27.8      0.0 2015-2016
## 2298       354.6       55.2          30.0         77.8      0.0 2015-2016
## 2299       367.6       52.8          29.0         29.2      0.0 2015-2016
## 2300       371.9       48.2          24.0         55.0      0.0 2015-2016
## 2301       359.9       52.2          29.0         28.9      0.0 2015-2016
## 2302       369.1       53.7          31.0         31.4      0.0 2015-2016
## 2303       369.8       53.0          30.0         86.0      0.0 2015-2016
## 2304       466.4       41.1          24.8          7.1      0.0 2015-2016
## 2305       457.5       40.2          24.9          6.9      0.0 2015-2016
## 2306       472.9       44.8          25.9          7.1      0.0 2015-2016
## 2307       466.9       50.3          33.9          7.2      0.0 2015-2016
## 2308       473.7       47.5          30.4          6.9      0.0 2015-2016
## 2309       471.3       48.0          30.6         28.2      0.0 2015-2016
## 2310       471.3       41.5          25.3          7.3      0.0 2015-2016
## 2311       472.3       45.3          27.9         28.6      0.0 2015-2016
## 2312       464.4       55.2          39.1         27.6      0.0 2015-2016
## 2313       477.4       40.1          25.2         26.7      0.0 2015-2016
## 2314       469.5       46.8          27.3         30.3      0.0 2015-2016
## 2315       472.3       47.2          29.4          7.2      0.0 2015-2016
## 2316       481.6       52.7          35.2          7.9      0.0 2015-2016
## 2317       475.2       43.2          25.8         29.3      0.0 2015-2016
## 2318       467.0       44.0          29.0         50.8      0.0 2015-2016
## 2319       490.6       41.5          24.4          6.5      0.0 2015-2016
## 2320       463.0       46.6          30.2         27.6      0.0 2015-2016
## 2321       485.0       45.1          25.4          7.5      0.0 2015-2016
## 2322       489.3       47.7          30.3         28.1      0.0 2015-2016
## 2323       483.7       44.1          25.8          7.6      0.0 2015-2016
## 2324       466.8       45.9          27.0          6.9      0.0 2015-2016
## 2325       481.7       44.3          26.0         28.8      0.0 2015-2016
## 2326       466.0       47.9          29.2         50.6      0.0 2015-2016
## 2327       494.5       39.9          22.1         31.2      0.0 2015-2016
## 2328       479.8       44.6          27.0         29.5      0.0 2015-2016
## 2329       479.8       43.0          25.8         50.8      0.0 2015-2016
## 2330       477.1       52.3          32.5         30.6      0.0 2015-2016
## 2331       485.2       51.6          34.7         28.9      0.0 2015-2016
## 2332       479.6       41.3          22.9          7.9      0.0 2015-2016
## 2333       492.0       48.3          31.8          7.2      0.0 2015-2016
## 2334       478.8       46.9          27.6         29.4      0.0 2015-2016
## 2335       492.7       46.0          28.3          6.6      0.0 2015-2016
## 2336       494.9       45.7          28.6          6.4      0.0 2015-2016
## 2337       485.8       40.9          24.4         53.1      0.0 2015-2016
## 2338       480.7       43.9          26.3         50.3      0.0 2015-2016
## 2339       478.7       49.3          28.7         52.6      0.0 2015-2016
## 2340       495.2       46.0          29.5         28.7      0.0 2015-2016
## 2341       478.7       41.8          25.1         28.5      0.0 2015-2016
## 2342       479.5       50.1          32.2         28.7      0.0 2015-2016
## 2343       473.3       39.4          20.2         29.6      0.0 2015-2016
## 2344       488.2       38.1          23.1         30.0      0.0 2015-2016
## 2345       477.1       47.8          30.3         53.9      0.0 2015-2016
## 2346       480.4       46.4          27.3         30.4      0.0 2015-2016
## 2347       492.6       44.7          26.2         53.5      0.0 2015-2016
## 2348       492.7       44.8          25.9         30.6      0.0 2015-2016
## 2349       484.3       46.5          27.8         52.7      0.0 2015-2016
## 2350       485.0       52.6          34.8         48.9      0.0 2015-2016
## 2351       483.0       45.1          27.1         52.6      0.0 2015-2016
## 2352       506.9       46.8          27.8          7.3      0.0 2015-2016
## 2353       508.2       49.4          30.2          8.1      0.0 2015-2016
## 2354       490.3       52.4          34.9         50.4      0.0 2015-2016
## 2355       510.8       52.3          33.7          7.4      0.0 2015-2016
## 2356       493.3       43.6          25.7         30.4      0.0 2015-2016
## 2357       492.6       51.5          32.4         54.0      0.0 2015-2016
## 2358       475.8       41.5          24.3         51.0      0.0 2015-2016
## 2359       489.0       46.1          28.8         52.9      0.0 2015-2016
## 2360       499.2       45.7          26.6          7.7      0.0 2015-2016
## 2361       497.2       39.5          23.1          7.8      0.0 2015-2016
## 2362       514.6       50.6          31.0          8.2      0.0 2015-2016
## 2363       486.5       45.9          26.3         52.7      0.0 2015-2016
## 2364       510.9       48.7          29.5          8.3      0.0 2015-2016
## 2365       505.4       52.3          31.5         30.8      0.0 2015-2016
## 2366       501.8       46.5          27.1         31.4      0.0 2015-2016
## 2367       514.8       46.4          27.6          7.5      0.0 2015-2016
## 2368       492.7       53.5          35.2         78.9      0.0 2015-2016
## 2369       514.6       45.6          28.5         30.9      0.0 2015-2016
## 2370       499.2       47.2          28.2         54.1      0.0 2015-2016
## 2371       509.2       51.3          31.8         29.6      0.0 2015-2016
## 2372       498.2       44.3          26.8         29.2      0.0 2015-2016
## 2373       498.8       43.5          25.1         54.1      0.0 2015-2016
## 2374       517.2       55.0          35.0         30.7      0.0 2015-2016
## 2375       488.4       48.6          30.0         77.1      0.0 2015-2016
## 2376       502.3       55.2          35.0         57.7      0.0 2015-2016
## 2377       491.5       52.9          33.3         79.2      0.0 2015-2016
## 2378       488.5       48.9          31.3         75.3      0.0 2015-2016
## 2379       488.2       45.6          23.6         79.5      0.0 2015-2016
## 2380       508.7       49.1          29.5         57.5      0.0 2015-2016
## 2381       511.4       45.2          25.3         30.6      0.0 2015-2016
## 2382       523.8       39.3          19.4         32.4      0.0 2015-2016
## 2383       519.8       50.0          31.3         57.8      0.0 2015-2016
## 2384       515.7       47.0          28.3         34.7      0.0 2015-2016
## 2385       541.0       51.0          32.4         33.7      0.0 2015-2016
## 2386       516.9       55.5          36.5         80.3      0.0 2015-2016
## 2387       563.6       53.8          32.4          8.3      0.0 2015-2016
## 2388       360.8       45.9          27.8         28.1      0.0 2015-2016
## 2389       360.5       41.3          23.9         29.9      0.0 2015-2016
## 2390       361.0       43.5          25.7         31.0      0.0 2015-2016
## 2391       360.6       49.9          32.2          7.5      0.0 2015-2016
## 2392       357.0       44.2          28.1          7.0      0.0 2015-2016
## 2393       363.1       46.3          29.3         27.4      0.0 2015-2016
## 2394       360.7       46.1          28.8          7.2      0.0 2015-2016
## 2395       362.0       47.7          30.4         52.2      0.0 2015-2016
## 2396       358.4       44.1          26.5         51.1      0.0 2015-2016
## 2397       362.3       50.8          36.3          7.1      0.0 2015-2016
## 2398       358.4       38.2          21.6          7.3      0.0 2015-2016
## 2399       358.7       41.6          25.2         29.3      0.0 2015-2016
## 2400       366.2       53.4          35.2         28.4      0.0 2015-2016
## 2401       359.7       39.1          21.5          7.5      0.0 2015-2016
## 2402       374.2       42.8          26.7          7.4      0.0 2015-2016
## 2403       363.7       46.0          27.6         29.1      0.0 2015-2016
## 2404       365.6       44.7          29.8          7.0      0.0 2015-2016
## 2405       353.7       39.7          24.0         50.8      0.0 2015-2016
## 2406       368.0       46.4          27.8         32.1      0.0 2015-2016
## 2407       360.6       44.0          31.1         29.6      0.0 2015-2016
## 2408       367.6       42.9          28.1          6.9      0.0 2015-2016
## 2409       377.9       43.5          26.9          7.3      0.0 2015-2016
## 2410       369.6       43.1          26.7          6.7      0.0 2015-2016
## 2411       369.6       39.9          25.2         30.9      0.0 2015-2016
## 2412       366.0       41.7          25.3         29.8      0.0 2015-2016
## 2413       367.1       50.0          31.0         30.3      0.0 2015-2016
## 2414       359.2       50.2          32.7          7.4      0.0 2015-2016
## 2415       374.0       46.8          29.8          8.3      0.0 2015-2016
## 2416       366.5       43.6          26.9         53.0      0.0 2015-2016
## 2417       385.1       43.3          25.2         30.9      0.0 2015-2016
## 2418       375.2       38.7          21.7         32.4      0.0 2015-2016
## 2419       362.1       43.9          24.1         31.4      0.0 2015-2016
## 2420       364.0       40.9          22.4          7.3      0.0 2015-2016
## 2421       361.3       48.5          30.7         30.3      0.0 2015-2016
## 2422       370.0       40.9          23.1          8.4      0.0 2015-2016
## 2423       377.9       44.0          26.7         30.7      0.0 2015-2016
## 2424       370.3       48.7          29.0         53.4      0.0 2015-2016
## 2425       365.2       43.9          26.2         54.1      0.0 2015-2016
## 2426       376.3       45.5          27.0         32.2      0.0 2015-2016
## 2427       371.2       42.1          25.2          7.7      0.0 2015-2016
## 2428       369.1       48.7          30.2         31.4      0.0 2015-2016
## 2429       383.0       47.9          30.4          7.3      0.0 2015-2016
## 2430       364.6       45.2          27.8         29.2      0.0 2015-2016
## 2431       391.3       44.1          28.3          7.5      0.0 2015-2016
## 2432       368.2       48.3          29.1         54.0      0.0 2015-2016
## 2433       372.9       40.7          23.2         29.2      0.0 2015-2016
## 2434       368.0       46.2          29.5         80.5      0.0 2015-2016
## 2435       388.9       44.4          25.4          7.5      0.0 2015-2016
## 2436       383.3       45.3          32.1          7.4      0.0 2015-2016
## 2437       392.4       42.7          24.6          7.6      0.0 2015-2016
## 2438       383.3       49.1          36.0         52.7      0.0 2015-2016
## 2439       400.8       48.1          30.0         31.6      0.0 2015-2016
## 2440       396.4       42.9          25.3         57.8      0.0 2015-2016
## 2441       435.8       43.6          24.4         28.0      0.0 2015-2016
## 2442       456.4       57.1          39.4         27.0      0.0 2015-2016
## 2443       453.0       49.4          30.1         27.5      0.0 2015-2016
## 2444       454.7       47.4          27.7         29.1      0.0 2015-2016
## 2445       450.1       52.5          33.1         74.9      0.0 2015-2016
## 2446       454.2       61.4          41.7         29.4      0.0 2015-2016
## 2447       451.5       74.1          55.2         50.8      0.0 2015-2016
## 2448       455.0       57.0          35.8         52.5      0.0 2015-2016
## 2449       470.1       59.0          39.6         27.7      0.0 2015-2016
## 2450       467.6       71.2          52.3          6.2      0.0 2015-2016
## 2451       467.7       55.7          36.5         53.1      0.0 2015-2016
## 2452       459.0       62.7          42.2         52.8      0.0 2015-2016
## 2453       469.0       58.7          42.1         28.5      0.0 2015-2016
## 2454       470.7       75.9          53.9         29.4      0.0 2015-2016
## 2455       469.0       62.3          42.4         55.9      0.0 2015-2016
## 2456       470.0       76.2          55.3         28.2      0.0 2015-2016
## 2457       468.2       63.7          44.5         28.5      0.0 2015-2016
## 2458       448.6       66.9          47.2         77.7      0.0 2015-2016
## 2459       464.7       73.5          53.4         51.0      0.0 2015-2016
## 2460       460.8       68.3          48.1         54.2      0.0 2015-2016
## 2461       457.6       57.0          40.4         27.6      0.0 2015-2016
## 2462       464.2       51.8          32.2         78.6      0.0 2015-2016
## 2463       480.5       53.9          36.9         28.9      0.0 2015-2016
## 2464       461.5       59.0          39.7         27.8      0.0 2015-2016
## 2465       476.6       50.7          30.4         53.9      0.0 2015-2016
## 2466       473.3       69.0          49.1         52.7      0.0 2015-2016
## 2467       454.7      142.2         125.6         27.6      0.0 2015-2016
## 2468       474.0       74.0          53.6         50.3      0.0 2015-2016
## 2469       443.0       88.0          69.9         99.2      0.0 2015-2016
## 2470       462.9       57.3          37.7         53.4      0.0 2015-2016
## 2471       446.1       70.7          50.9         75.9      0.0 2015-2016
## 2472       458.9       97.0          76.8         27.7      0.0 2015-2016
## 2473       492.2       50.8          33.3          5.9      0.0 2015-2016
## 2474       459.9       52.9          34.8         74.6      0.0 2015-2016
## 2475       472.3       47.7          34.0         78.1      0.0 2015-2016
## 2476       478.4       47.1          26.4         54.3      0.0 2015-2016
## 2477       484.8       56.2          35.1         54.7      0.0 2015-2016
## 2478       464.6       76.4          58.5         76.5      0.0 2015-2016
## 2479       474.2       61.9          42.8         78.8      0.0 2015-2016
## 2480       459.6       99.5          81.3         77.4      0.0 2015-2016
## 2481       468.2       56.3          38.1         54.5      0.0 2015-2016
## 2482       465.7       62.6          42.4         55.5      0.0 2015-2016
## 2483       458.5       65.5          45.7         28.6      0.0 2015-2016
## 2484       472.6       87.1          69.1         53.3      0.0 2015-2016
## 2485       469.0       70.6          51.8         77.6      0.0 2015-2016
## 2486       488.9       64.8          44.2         55.3      0.0 2015-2016
## 2487       462.8       54.8          38.0         53.2      0.0 2015-2016
## 2488       463.9       67.8          46.9         78.4      0.0 2015-2016
## 2489       456.3       59.6          40.1        101.0      0.0 2015-2016
## 2490       466.4       88.1          68.2         28.7      0.0 2015-2016
## 2491       473.1       67.4          46.7         54.0      0.0 2015-2016
## 2492       467.8       91.8          72.2         52.5      0.0 2015-2016
## 2493       450.3       66.2          46.9        130.8      0.0 2015-2016
## 2494       472.0       82.5          63.0         52.9      0.0 2015-2016
## 2495       471.7       53.2          33.7         76.8      0.0 2015-2016
## 2496       473.7       68.9          49.5         77.2      0.0 2015-2016
## 2497       463.8       55.0          34.8         80.3      0.0 2015-2016
## 2498       467.6       47.4          27.1         80.9      0.0 2015-2016
## 2499       477.7       62.8          44.8         54.9      0.0 2015-2016
## 2500       498.8       54.4          34.6          5.5      0.0 2015-2016
## 2501       466.9       75.4          55.6         82.5      0.0 2015-2016
## 2502       470.1      107.1          86.9         83.8      0.0 2015-2016
## 2503       487.7       69.5          49.9         54.6      0.0 2015-2016
## 2504       479.1       77.7          57.3         57.5      0.0 2015-2016
## 2505       478.8       64.0          43.7         28.9      0.0 2015-2016
## 2506       480.3       52.8          33.3         84.5      0.0 2015-2016
## 2507       475.3       74.5          56.8         52.8      0.0 2015-2016
## 2508       471.2       55.2          34.5        129.7      0.0 2015-2016
## 2509       472.8       72.4          53.5         55.4      0.0 2015-2016
## 2510       480.1       65.1          45.7         81.5      0.0 2015-2016
## 2511       476.5      110.0          92.1        101.2      0.0 2015-2016
## 2512       488.3       75.5          57.9         81.0      0.0 2015-2016
## 2513       468.5       77.1          59.4        123.6      0.0 2015-2016
## 2514       482.7       75.6          52.8         81.0      0.0 2015-2016
## 2515       471.5       66.6          47.5        107.8      0.0 2015-2016
## 2516       459.2       62.2          41.7        103.9      0.0 2015-2016
## 2517       451.7       75.1          56.1        104.0      0.0 2015-2016
## 2518       466.3       71.0          50.5         86.3      0.0 2015-2016
## 2519       493.7       65.1          42.4         82.9      0.0 2015-2016
## 2520       472.0       73.4          53.6        109.4      0.0 2015-2016
## 2521       510.7       51.1          28.8         33.7      0.0 2015-2016
## 2522       494.1       57.4          33.9         59.3      0.0 2015-2016
## 2523       477.2      100.8          80.8        107.0      0.0 2015-2016
## 2524       498.6       69.1          48.2         84.4      0.0 2015-2016
## 2525       481.8       72.8          54.1        106.2      0.0 2015-2016
## 2526       493.2       82.1          62.5        106.8      0.0 2015-2016
## 2527       498.1       49.8          28.3         56.2      0.0 2015-2016
## 2528       485.1       70.4          49.4        108.3      0.0 2015-2016
## 2529       502.3       55.2          32.7         82.1      0.0 2015-2016
## 2530       512.0       46.4          25.6         85.8      0.0 2015-2016
## 2531       514.7       57.4          34.3         61.2      0.0 2015-2016
## 2532       484.2      102.7          82.0         82.0      0.0 2015-2016
## 2533       494.6       51.5          32.5         86.7      0.0 2015-2016
## 2534       503.9       66.5          44.9        111.5      0.0 2015-2016
## 2535       504.8       75.6          54.7         83.8      0.0 2015-2016
## 2536       493.9      121.9         102.8         54.3      0.0 2015-2016
## 2537       506.3       63.8          43.0         57.1      0.0 2015-2016
## 2538       483.4       60.3          38.9         86.6      0.0 2015-2016
## 2539       497.0       84.2          62.5        110.2      0.0 2015-2016
## 2540       521.0      102.1          81.1         54.7      0.0 2015-2016
## 2541       531.5       58.2          37.5         86.4      0.0 2015-2016
## 2542       494.8       56.9          31.7        145.2      0.0 2015-2016
## 2543       506.0       91.1          67.8        112.9      0.0 2015-2016
## 2544       573.0       58.5          39.3          0.0   2467.5 2015-2016
## 2545       567.2       49.9          30.7          0.0   2443.5 2015-2016
## 2546       583.3       48.0          29.4          0.0   2486.3 2015-2016
## 2547       572.4       47.8          20.8          0.0   2460.9 2015-2016
## 2548       563.5       46.5          26.5          0.0   2448.2 2015-2016
## 2549       576.8       48.7          28.8         60.0   2465.4 2015-2016
## 2550       574.9       50.3          30.3         60.0   2468.3 2015-2016
## 2551       561.9       55.2          33.9        120.0   2483.6 2015-2016
## 2552       589.1       42.2          23.9          0.0   2472.4 2015-2016
## 2553       577.5       44.4          24.8          0.0   2476.8 2015-2016
## 2554       585.7       52.1          32.1         60.0   2489.1 2015-2016
## 2555       595.5       46.3          27.4          0.0   2537.5 2015-2016
## 2556       610.3       44.8          24.4         60.0   2560.1 2015-2016
## 2557       588.8       48.6          28.6          0.0   2518.3 2015-2016
## 2558       580.2       44.4          25.2          0.0   2474.5 2015-2016
## 2559       579.0       44.2          24.5          0.0   2461.0 2015-2016
## 2560       592.9       43.6          24.5          0.0   2535.0 2015-2016
## 2561       598.8       45.2          25.9          0.0   2521.0 2015-2016
## 2562       584.8       43.2          23.9         60.0   2480.9 2015-2016
## 2563       583.2       47.4          27.0         60.0   2530.1 2015-2016
## 2564       562.7       44.1          22.9        180.0   2374.7 2015-2016
## 2565       564.4       45.8          31.0         60.0   2439.1 2015-2016
## 2566       598.4       49.0          29.9          0.0   2547.5 2015-2016
## 2567       599.7       44.5          24.5        120.0   2541.1 2015-2016
## 2568       583.5       49.4          29.4         60.0   2494.8 2015-2016
## 2569       577.3       46.5          26.7         60.0   2515.3 2015-2016
## 2570       573.7       43.1          23.2         60.0   2451.0 2015-2016
## 2571       587.9       49.3          28.5         60.0   2515.7 2015-2016
## 2572       590.8       44.7          26.5          0.0   2548.3 2015-2016
## 2573       574.1       58.5          38.6        120.0   2449.2 2015-2016
## 2574       571.7       49.2          30.1        120.0   2460.8 2015-2016
## 2575       577.8       40.5          21.2          0.0   2464.4 2015-2016
## 2576       601.0       54.5          34.6          0.0   2574.8 2015-2016
## 2577       570.8       45.6          28.3        120.0   2463.9 2015-2016
## 2578       591.9       50.5          30.9         60.0   2539.8 2015-2016
## 2579       579.1       43.0          24.6          0.0   2498.6 2015-2016
## 2580       598.2       45.7          26.3          0.0   2538.2 2015-2016
## 2581       597.0       45.9          27.8         60.0   2556.1 2015-2016
## 2582       586.3       46.9          27.6        120.0   2497.9 2015-2016
## 2583       604.3       48.9          26.5          0.0   2557.3 2015-2016
## 2584       594.5       63.8          42.8         60.0   2553.5 2015-2016
## 2585       592.0       63.1          43.5         60.0   2545.7 2015-2016
## 2586       620.5       46.3          25.6          0.0   2597.8 2015-2016
## 2587       606.0       48.7          26.7         60.0   2608.7 2015-2016
## 2588       614.1       43.9          26.3         60.0   2577.7 2015-2016
## 2589       560.9       57.4          38.0        180.0   2430.8 2015-2016
## 2590       633.1       44.9          24.4          0.0   2681.9 2015-2016
## 2591       606.4       64.2          44.6         60.0   2627.1 2015-2016
## 2592       593.6       53.1          32.4          0.0   2533.2 2015-2016
## 2593       616.5       58.2          37.3         60.0   2622.6 2015-2016
## 2594       591.5       53.9          34.2         60.0   2526.3 2015-2016
## 2595       582.4       53.3          31.1        120.0   2536.6 2015-2016
## 2596       578.2       46.8          29.5          0.0   2495.4 2015-2016
## 2597       616.2       42.2          22.2         60.0   2564.4 2015-2016
## 2598       602.2       48.5          30.9          0.0   2588.0 2015-2016
## 2599       622.4       50.9          30.9         60.0   2636.3 2015-2016
## 2600       576.7       48.1          27.8        120.0   2454.7 2015-2016
## 2601       607.0       59.3          37.5         60.0   2594.1 2015-2016
## 2602       608.3       53.9          34.8        120.0   2592.5 2015-2016
## 2603       589.4       46.6          26.4        120.0   2526.1 2015-2016
## 2604       603.2       44.9          25.6        120.0   2562.0 2015-2016
## 2605       610.3       93.5          72.8         60.0   2625.5 2015-2016
## 2606       593.9       50.8          30.3        180.0   2534.4 2015-2016
## 2607       630.5       48.1          27.4          0.0   2699.5 2015-2016
## 2608       626.0       52.1          31.4        120.0   2636.3 2015-2016
## 2609       572.1       49.2          27.5        120.0   2465.6 2015-2016
## 2610       621.4       47.3          25.6          0.0   2653.3 2015-2016
## 2611       616.3       58.2          36.3          0.0   2617.1 2015-2016
## 2612       637.6       47.1          25.1          0.0   2645.5 2015-2016
## 2613       591.7       53.7          32.9        120.0   2530.9 2015-2016
## 2614       633.4       55.1          32.7         60.0   2670.6 2015-2016
## 2615       607.2       54.2          30.4        120.0   2620.2 2015-2016
## 2616       630.5       55.7          33.6         60.0   2673.5 2015-2016
## 2617       599.9       58.3          37.7         60.0   2608.0 2015-2016
## 2618       603.7       56.0          35.6         60.0   2591.7 2015-2016
## 2619       597.9       52.8          31.3        120.0   2548.2 2015-2016
## 2620       606.3       48.8          31.6        120.0   2540.6 2015-2016
## 2621       586.8       59.0          38.0        180.0   2514.4 2015-2016
## 2622       617.9       58.2          38.7        180.0   2661.5 2015-2016
## 2623       635.5       47.5          26.1        120.0   2664.2 2015-2016
## 2624       600.6       52.4          74.3         60.0   2592.3 2015-2016
## 2625       628.8       46.4          25.0         60.0   2610.6 2015-2016
## 2626       671.6       44.7          23.8         60.0   2779.5 2015-2016
## 2627       619.9       54.7          32.7        120.0   2615.6 2015-2016
## 2628       636.3       48.0          24.1        120.0   2641.8 2015-2016
## 2629       586.4       50.3          28.0        120.0   2587.5 2015-2016
## 2630       619.3       51.0          28.0        120.0   2616.0 2015-2016
## 2631       636.4       56.2          32.8          0.0   2629.1 2015-2016
## 2632       587.4       45.2          25.1        180.0   2557.4 2015-2016
## 2633       623.3       54.5          32.3        180.0   2659.9 2015-2016
## 2634       650.1       68.1          46.4         60.0   2779.1 2015-2016
## 2635       608.5       41.6          22.9         60.0   2586.2 2015-2016
## 2636       645.9       58.3          33.4        120.0   2731.1 2015-2016
## 2637       628.5       52.1          32.1        120.0   2678.8 2015-2016
## 2638       606.3       51.4          30.2        240.0   2608.6 2015-2016
## 2639       622.3       57.2          35.3        120.0   2677.5 2015-2016
## 2640       633.3       45.7          24.0          0.0   2720.5 2015-2016
## 2641       657.6       51.9          29.9        120.0   2760.1 2015-2016
## 2642       655.9       50.7          29.9        120.0   2806.2 2015-2016
## 2643       691.1       63.6          40.6         60.0   2964.8 2015-2016
## 2644       659.9       57.5          35.1        120.0   2801.4 2015-2016
## 2645       650.6       57.5          35.8        240.0   2694.3 2015-2016
## 2646       691.5       49.3          28.0        120.0   2890.8 2015-2016
## 2647       609.8       50.2          30.1         60.0   2649.8 2015-2016
## 2648       317.1       44.1          25.0         30.5      0.0 2015-2016
## 2649       331.9       43.6          25.3          5.8      0.0 2015-2016
## 2650       328.2       41.4          22.1         29.5      0.0 2015-2016
## 2651       318.1       40.9          19.9          5.6      0.0 2015-2016
## 2652       325.2       43.7          25.0         28.5      0.0 2015-2016
## 2653       323.6       52.1          32.3         28.1      0.0 2015-2016
## 2654       318.0       43.0          22.6          5.3      0.0 2015-2016
## 2655       330.7       45.1          27.4          5.7      0.0 2015-2016
## 2656       332.4       43.9          23.2          6.0      0.0 2015-2016
## 2657       324.4       44.4          27.8         27.4      0.0 2015-2016
## 2658       322.9       39.6          22.1          5.4      0.0 2015-2016
## 2659       330.7       41.5          21.2         29.3      0.0 2015-2016
## 2660       314.6       46.5          26.4         28.6      0.0 2015-2016
## 2661       320.2       45.8          27.4          5.5      0.0 2015-2016
## 2662       329.4       44.9          26.1         29.0      0.0 2015-2016
## 2663       319.8       39.6          19.7          5.4      0.0 2015-2016
## 2664       324.9       44.8          24.6          4.9      0.0 2015-2016
## 2665       322.0       43.5          25.1          5.0      0.0 2015-2016
## 2666       332.9       44.0          25.9          5.1      0.0 2015-2016
## 2667       319.6       53.3          35.3         50.3      0.0 2015-2016
## 2668       330.4       50.2          31.0         27.6      0.0 2015-2016
## 2669       331.5       43.9          23.9          5.4      0.0 2015-2016
## 2670       329.2       46.4          28.2         28.4      0.0 2015-2016
## 2671       335.8       44.3          26.2         27.9      0.0 2015-2016
## 2672       322.7       41.4          21.8          6.5      0.0 2015-2016
## 2673       327.5       49.5          29.5         28.1      0.0 2015-2016
## 2674       324.9       49.9          31.2         53.1      0.0 2015-2016
## 2675       321.1       51.0          32.9         49.8      0.0 2015-2016
## 2676       333.1       44.1          24.0         28.3      0.0 2015-2016
## 2677       340.7       46.7          24.4         29.9      0.0 2015-2016
## 2678       332.1       47.7          28.8         28.4      0.0 2015-2016
## 2679       331.6       47.0          26.9         52.9      0.0 2015-2016
## 2680       337.0       45.8          24.8          5.6      0.0 2015-2016
## 2681       342.5       46.7          29.1          5.8      0.0 2015-2016
## 2682       339.6       50.6          31.5         28.7      0.0 2015-2016
## 2683       328.0       53.0          33.9         28.5      0.0 2015-2016
## 2684       324.8       62.3          41.1         52.1      0.0 2015-2016
## 2685       332.4       49.4          33.1          5.3      0.0 2015-2016
## 2686       338.1       43.9          26.7          5.3      0.0 2015-2016
## 2687       336.4       49.7          31.5          5.6      0.0 2015-2016
## 2688       331.2       49.4          28.8          5.4      0.0 2015-2016
## 2689       331.5       49.0          28.4         27.4      0.0 2015-2016
## 2690       326.1       51.6          31.6         75.3      0.0 2015-2016
## 2691       336.8       48.4          29.3          6.0      0.0 2015-2016
## 2692       322.6       46.9          26.3        101.5      0.0 2015-2016
## 2693       331.5       45.2          23.2         53.6      0.0 2015-2016
## 2694       337.8       46.9          23.4         56.5      0.0 2015-2016
## 2695       352.1       43.1          22.4          5.9      0.0 2015-2016
## 2696       331.5       53.4          32.6         75.4      0.0 2015-2016
## 2697       341.0       48.5          27.5        105.4      0.0 2015-2016
## 2698       341.5       45.5          27.1          5.3      0.0 2015-2016
## 2699       338.5       49.3          29.9         29.1      0.0 2015-2016
## 2700       334.1       46.6          27.0          5.4      0.0 2015-2016
## 2701       319.7       48.9          30.4         27.2      0.0 2015-2016
## 2702       328.1       44.0          24.5         27.6      0.0 2015-2016
## 2703       332.0       53.9          35.0         30.0      0.0 2015-2016
## 2704       338.3       42.7          20.7          5.6      0.0 2015-2016
## 2705       340.0       46.9          25.6         29.9      0.0 2015-2016
## 2706       348.3       43.1          22.0         30.9      0.0 2015-2016
## 2707       342.8       47.7          26.2         80.1      0.0 2015-2016
## 2708       467.8       38.3          22.3          8.4      0.0 2015-2016
## 2709       476.9       38.5          22.7          8.5      0.0 2015-2016
## 2710       476.6       43.4          27.4          8.6      0.0 2015-2016
## 2711       471.8       39.5          23.5         32.3      0.0 2015-2016
## 2712       473.1       40.6          25.9          7.9      0.0 2015-2016
## 2713       470.0       40.6          24.9         31.5      0.0 2015-2016
## 2714       478.9       43.3          27.1          8.9      0.0 2015-2016
## 2715       473.6       40.3          24.3          8.8      0.0 2015-2016
## 2716       466.7       50.4          33.3          9.2      0.0 2015-2016
## 2717       473.7       43.4          26.2         31.0      0.0 2015-2016
## 2718       478.6       40.7          23.8         33.3      0.0 2015-2016
## 2719       481.2       46.5          30.0         31.2      0.0 2015-2016
## 2720       485.8       48.3          32.6          8.6      0.0 2015-2016
## 2721       478.2       44.3          27.0         31.3      0.0 2015-2016
## 2722       484.7       44.8          27.7          8.7      0.0 2015-2016
## 2723       476.8       42.7          25.9          9.0      0.0 2015-2016
## 2724       474.3       42.3          25.0         33.2      0.0 2015-2016
## 2725       489.5       44.0          28.2          9.2      0.0 2015-2016
## 2726       474.9       47.8          31.8         56.8      0.0 2015-2016
## 2727       468.2       54.4          37.8         52.6      0.0 2015-2016
## 2728       480.1       45.6          28.7         31.2      0.0 2015-2016
## 2729       482.2       46.9          29.9         32.3      0.0 2015-2016
## 2730       495.1       39.8          22.6          9.6      0.0 2015-2016
## 2731       486.9       46.1          30.2          8.9      0.0 2015-2016
## 2732       492.5       44.5          27.7         31.8      0.0 2015-2016
## 2733       490.7       42.4          26.9          8.5      0.0 2015-2016
## 2734       475.6       38.8          19.1         53.5      0.0 2015-2016
## 2735       495.5       44.4          26.6          9.6      0.0 2015-2016
## 2736       484.8       42.6          25.8          8.8      0.0 2015-2016
## 2737       485.3       48.9          31.7         32.6      0.0 2015-2016
## 2738       480.5       44.9          27.7         56.0      0.0 2015-2016
## 2739       491.1       39.4          23.2         34.3      0.0 2015-2016
## 2740       475.2       48.7          31.1         55.8      0.0 2015-2016
## 2741       478.8       50.1          32.2         54.9      0.0 2015-2016
## 2742       488.6       48.4          29.0         32.7      0.0 2015-2016
## 2743       467.9       41.7          25.7         54.3      0.0 2015-2016
## 2744       489.1       48.6          32.4         32.2      0.0 2015-2016
## 2745       500.1       48.1          31.4          8.8      0.0 2015-2016
## 2746       486.9       42.5          24.2         32.2      0.0 2015-2016
## 2747       492.2       45.2          31.9          9.2      0.0 2015-2016
## 2748       495.2       42.4          24.8         32.7      0.0 2015-2016
## 2749       494.8       45.3          27.6         32.8      0.0 2015-2016
## 2750       489.9       43.2          27.0         33.2      0.0 2015-2016
## 2751       487.3       46.0          28.0          9.9      0.0 2015-2016
## 2752       489.8       43.4          24.1         33.6      0.0 2015-2016
## 2753       473.8       40.0          22.9         79.1      0.0 2015-2016
## 2754       488.6       51.7          34.1         56.1      0.0 2015-2016
## 2755       486.3       43.7          26.4         56.6      0.0 2015-2016
## 2756       493.8       42.5          24.3          9.1      0.0 2015-2016
## 2757       472.5       45.8          25.6         61.3      0.0 2015-2016
## 2758       504.4       43.8          24.7          9.7      0.0 2015-2016
## 2759       485.6       45.2          28.5         33.2      0.0 2015-2016
## 2760       480.7       39.9          22.9          9.3      0.0 2015-2016
## 2761       472.6       41.4          24.4         78.9      0.0 2015-2016
## 2762       494.6       51.2          32.9         33.3      0.0 2015-2016
## 2763       486.0       42.2          24.6         54.2      0.0 2015-2016
## 2764       489.5       41.4          24.8         32.4      0.0 2015-2016
## 2765       503.3       49.1          31.0         34.1      0.0 2015-2016
## 2766       492.8       49.2          32.3         81.2      0.0 2015-2016
## 2767       483.7       49.0          30.6         58.5      0.0 2015-2016
## 2768       506.8       42.5          24.7         33.3      0.0 2015-2016
## 2769       503.4       49.8          31.2         35.1      0.0 2015-2016
## 2770       492.8       41.7          24.5          9.2      0.0 2015-2016
## 2771       501.0       49.6          32.3         32.4      0.0 2015-2016
## 2772       511.8       42.6          24.7         34.5      0.0 2015-2016
## 2773       496.6       47.3          30.6         33.3      0.0 2015-2016
## 2774       497.2       48.5          30.3         34.1      0.0 2015-2016
## 2775       524.5       46.3          29.3          9.5      0.0 2015-2016
## 2776       493.3       47.8          30.9         58.2      0.0 2015-2016
## 2777       512.2       41.3          23.6         34.0      0.0 2015-2016
## 2778       504.6       38.3          21.5         60.6      0.0 2015-2016
## 2779       520.0       50.0          29.4          9.7      0.0 2015-2016
## 2780       510.6       49.0          29.7         35.4      0.0 2015-2016
## 2781       492.1       49.8          32.5         59.8      0.0 2015-2016
## 2782       480.4       43.9          26.8         56.5      0.0 2015-2016
## 2783       509.6       42.5          24.6         34.8      0.0 2015-2016
## 2784       528.9       42.7          25.3         10.4      0.0 2015-2016
## 2785       503.6       46.8          28.9         34.0      0.0 2015-2016
## 2786       500.8       53.0          35.9         62.2      0.0 2015-2016
## 2787       520.0       47.1          28.5         61.0      0.0 2015-2016
## 2788       525.5       46.7          28.0         34.3      0.0 2015-2016
## 2789       526.0       50.0          31.2         61.5      0.0 2015-2016
## 2790       510.2       51.0          31.9         58.8      0.0 2015-2016
## 2791       527.4       48.5          30.1          9.3      0.0 2015-2016
## 2792       500.1       44.2          26.4         59.5      0.0 2015-2016
## 2793       525.8       45.8          27.4         35.8      0.0 2015-2016
## 2794       499.5       48.9          32.8        106.0      0.0 2015-2016
## 2795       512.0       45.4          28.2         59.5      0.0 2015-2016
## 2796       524.0       46.7          27.7         62.2      0.0 2015-2016
## 2797       531.1       52.8          35.2         62.2      0.0 2015-2016
## 2798       560.0       49.4          31.9         34.8      0.0 2015-2016
## 2799       542.5       48.4          28.7         10.9      0.0 2015-2016
## 2800       522.1       48.3          28.5         85.1      0.0 2015-2016
## 2801       537.1       49.6          29.8          9.4      0.0 2015-2016
## 2802       517.1       49.9          30.9         87.9      0.0 2015-2016
## 2803       560.4       51.0          32.8         66.2      0.0 2015-2016
## 2804       590.7       55.1          35.2         10.5      0.0 2015-2016
## 2805       533.3       52.6          33.7         61.3      0.0 2015-2016
## 2806       557.8       57.4          37.3         68.0      0.0 2015-2016
## 2807       558.0       43.9          24.9         66.3      0.0 2015-2016
## 2808       590.6       42.5          24.4         39.1      0.0 2015-2016
## 2809       552.9       54.0          35.2         36.6      0.0 2015-2016
## 2810       535.1       41.4          25.4          0.8   2315.2 2015-2016
## 2811       551.1       43.4          27.9          0.0   2381.3 2015-2016
## 2812       546.8       36.8          21.8          0.3   2374.9 2015-2016
## 2813       549.8       40.4          24.1         60.6   2357.0 2015-2016
## 2814       562.7       47.4          31.8          0.3   2434.6 2015-2016
## 2815       553.8       44.5          26.5          0.7   2400.6 2015-2016
## 2816       565.5       40.4          24.2          0.7   2412.3 2015-2016
## 2817       553.3       42.0          25.6          1.0   2369.4 2015-2016
## 2818       563.9       41.6          24.8          0.5   2412.4 2015-2016
## 2819       549.3       39.0          23.6         60.3   2378.5 2015-2016
## 2820       579.7       43.8          27.4         61.1   2428.2 2015-2016
## 2821       562.6       49.5          31.0          1.0   2433.4 2015-2016
## 2822       548.2       53.8          38.3         61.1   2354.6 2015-2016
## 2823       556.8       44.7          27.5         60.7   2389.6 2015-2016
## 2824       571.5       46.3          30.1          0.7   2446.0 2015-2016
## 2825       550.0       44.8          28.0          0.7   2381.6 2015-2016
## 2826       559.9       43.0          27.1         60.3   2402.7 2015-2016
## 2827       577.1       42.2          24.6        121.0   2427.6 2015-2016
## 2828       565.2       41.1          23.5         61.2   2400.9 2015-2016
## 2829       551.1       46.6          31.6         60.4   2385.1 2015-2016
## 2830       546.0       43.7          28.3        120.3   2373.8 2015-2016
## 2831       549.7       44.4          27.7        120.4   2388.4 2015-2016
## 2832       559.3       48.2          32.2         61.0   2443.3 2015-2016
## 2833       587.3       53.3          34.7          1.1   2491.7 2015-2016
## 2834       596.8       41.6          24.1          1.2   2531.0 2015-2016
## 2835       592.3       49.1          32.8          1.3   2545.4 2015-2016
## 2836       563.5       42.5          25.9         61.0   2437.3 2015-2016
## 2837       579.5       45.6          28.3         60.7   2444.4 2015-2016
## 2838       575.3       47.9          30.9          0.6   2469.9 2015-2016
## 2839       575.3       45.1          27.7         61.1   2461.0 2015-2016
## 2840       557.8       48.2          31.7          0.1   2413.6 2015-2016
## 2841       575.5       44.3          24.4         61.7   2450.5 2015-2016
## 2842       601.3       44.2          26.8          1.3   2503.2 2015-2016
## 2843       573.4       44.8          27.7          0.8   2470.8 2015-2016
## 2844       565.8       41.0          24.5          1.2   2432.2 2015-2016
## 2845       570.2       55.5          37.5          1.9   2475.1 2015-2016
## 2846       606.6       48.6          32.2          0.7   2579.0 2015-2016
## 2847       576.3       45.7          29.1          0.8   2486.4 2015-2016
## 2848       576.3       37.5          18.0          1.3   2441.8 2015-2016
## 2849       568.7       44.4          27.3          1.6   2458.2 2015-2016
## 2850       583.0       42.7          26.0         61.2   2470.8 2015-2016
## 2851       542.4       39.9          23.5        120.9   2359.4 2015-2016
## 2852       608.7       36.7          21.2          0.8   2565.6 2015-2016
## 2853       558.0       47.6          30.3        180.2   2407.3 2015-2016
## 2854       590.3       53.8          35.7         61.4   2516.2 2015-2016
## 2855       584.8       45.1          27.0         61.5   2473.6 2015-2016
## 2856       579.8       41.9          24.2         60.6   2475.5 2015-2016
## 2857       599.4       47.5          29.5          2.1   2573.1 2015-2016
## 2858       582.5       48.0          29.9         61.6   2474.4 2015-2016
## 2859       556.5       46.0          28.5        120.9   2449.5 2015-2016
## 2860       590.3       47.0          31.5         60.6   2509.8 2015-2016
## 2861       626.8       44.9          28.3          1.6   2628.2 2015-2016
## 2862       582.3       42.6          26.3        121.3   2453.0 2015-2016
## 2863       588.6       41.6          25.2          0.7   2464.8 2015-2016
## 2864       569.8       40.5          23.1         61.2   2412.2 2015-2016
## 2865       543.5       40.0          24.0         61.5   2375.4 2015-2016
## 2866       623.5       46.9          29.3          0.9   2622.2 2015-2016
## 2867       553.7       50.2          34.8        180.9   2402.5 2015-2016
## 2868       564.4       48.3          34.0        120.9   2389.7 2015-2016
## 2869       560.7       44.1          29.4         60.4   2392.4 2015-2016
## 2870       565.2       51.1          34.1        120.9   2466.6 2015-2016
## 2871       622.9       54.3          35.9          1.0   2643.0 2015-2016
## 2872       599.7       50.9          33.9        180.4   2525.6 2015-2016
## 2873       584.6       39.2          21.4          0.9   2466.6 2015-2016
## 2874       603.1       41.1          23.9         61.8   2498.5 2015-2016
## 2875       601.7       45.7          26.6          1.0   2521.4 2015-2016
## 2876       601.5       51.8          32.8         61.3   2572.6 2015-2016
## 2877       600.4       46.4          28.1          1.9   2578.9 2015-2016
## 2878       588.9       53.0          35.0         61.2   2532.3 2015-2016
## 2879       588.1       49.1          31.4         61.1   2486.4 2015-2016
## 2880       614.8       52.9          35.6         61.2   2637.7 2015-2016
## 2881       596.1       49.5          31.4          1.2   2560.6 2015-2016
## 2882       583.7       40.9          25.1         60.7   2510.5 2015-2016
## 2883       581.4       48.6          32.3        181.6   2457.8 2015-2016
## 2884       603.0       47.8          31.0         61.8   2566.4 2015-2016
## 2885       600.8       53.8          37.3         61.1   2557.7 2015-2016
## 2886       592.6       45.6          29.0          0.9   2575.8 2015-2016
## 2887       617.2       53.2          35.7         61.5   2608.2 2015-2016
## 2888       614.7       55.1          35.2         61.4   2648.3 2015-2016
## 2889       599.8       45.6          28.3         61.4   2552.5 2015-2016
## 2890       606.7       45.1          25.5         62.5   2555.4 2015-2016
## 2891       576.0       49.7          31.6         60.8   2505.3 2015-2016
## 2892       574.7       41.8          22.3        181.5   2498.0 2015-2016
## 2893       611.8       50.0          32.3         61.1   2657.3 2015-2016
## 2894       595.0       50.6          31.3        121.7   2547.4 2015-2016
## 2895       656.2       45.7          27.7         61.9   2724.8 2015-2016
## 2896       602.5       49.2          31.6         61.4   2564.7 2015-2016
## 2897       580.8       51.3          33.0        121.8   2513.1 2015-2016
## 2898       654.1       49.0          30.6        121.4   2708.1 2015-2016
## 2899       611.0       43.2          25.2          1.8   2628.3 2015-2016
## 2900       601.2       49.5          31.4        121.7   2590.3 2015-2016
## 2901       641.4       53.1          33.9        181.8   2729.9 2015-2016
## 2902       640.0       51.3          31.8        123.2   2728.7 2015-2016
## 2903       586.6       45.3          27.8         61.5   2473.4 2015-2016
## 2904       647.6       47.4          29.7         61.3   2678.5 2015-2016
## 2905       679.0       57.2          38.0          2.1   2905.8 2015-2016
## 2906       646.5       48.6          30.3        182.3   2738.9 2015-2016
## 2907       645.2       48.2          29.7         61.3   2702.6 2015-2016
## 2908       700.1       51.4          30.9        122.6   2888.8 2015-2016
## 2909       402.9       37.5          21.5          8.8      0.0 2015-2016
## 2910       405.1       34.1          21.0         10.9      0.0 2015-2016
## 2911       412.2       35.9          22.3         10.1      0.0 2015-2016
## 2912       404.0       39.0          24.0         27.8      0.0 2015-2016
## 2913       407.5       42.1          27.6          8.8      0.0 2015-2016
## 2914       400.5       39.5          23.3          8.8      0.0 2015-2016
## 2915       405.7       41.8          23.4          8.8      0.0 2015-2016
## 2916       407.3       40.1          22.6          8.9      0.0 2015-2016
## 2917       394.5       38.6          23.1         30.4      0.0 2015-2016
## 2918       407.2       44.1          28.9         30.7      0.0 2015-2016
## 2919       407.4       35.7          22.3         52.6      0.0 2015-2016
## 2920       400.5       42.4          27.8         30.2      0.0 2015-2016
## 2921       406.8       44.7          27.5          8.6      0.0 2015-2016
## 2922       410.3       39.1          22.7         54.9      0.0 2015-2016
## 2923       405.2       44.1          27.5          9.4      0.0 2015-2016
## 2924       410.3       40.9          29.1         33.0      0.0 2015-2016
## 2925       405.0       44.1          29.8         30.8      0.0 2015-2016
## 2926       400.9       45.7          27.7         52.7      0.0 2015-2016
## 2927       406.1       40.7          22.7         52.8      0.0 2015-2016
## 2928       398.4       38.9          22.3         31.6      0.0 2015-2016
## 2929       405.3       43.8          28.5         52.4      0.0 2015-2016
## 2930       416.2       44.7          27.6         32.8      0.0 2015-2016
## 2931       403.7       39.9          24.8         32.4      0.0 2015-2016
## 2932       417.4       41.4          24.1         33.0      0.0 2015-2016
## 2933       407.8       46.4          29.5         56.6      0.0 2015-2016
## 2934       427.3       45.0          28.6          9.3      0.0 2015-2016
## 2935       425.2       42.9          27.0         33.1      0.0 2015-2016
## 2936       408.2       40.9          24.1         84.6      0.0 2015-2016
## 2937       434.3       44.7          27.9         56.3      0.0 2015-2016
## 2938       330.8       37.3          23.6         53.5      0.0 2015-2016
## 2939       339.0       35.3          21.7         32.2      0.0 2015-2016
## 2940       335.9       40.4          23.5         32.1      0.0 2015-2016
## 2941       333.7       39.0          21.7         31.8      0.0 2015-2016
## 2942       339.1       43.1          27.8          8.8      0.0 2015-2016
## 2943       339.8       49.6          33.7          8.3      0.0 2015-2016
## 2944       340.4       37.3          21.0         54.8      0.0 2015-2016
## 2945       340.6       40.0          24.4         32.8      0.0 2015-2016
## 2946       340.6       42.5          27.5         30.2      0.0 2015-2016
## 2947       339.8       39.7          24.1          9.1      0.0 2015-2016
## 2948       336.5       38.4          23.2         51.6      0.0 2015-2016
## 2949       339.0       48.6          31.6          8.6      0.0 2015-2016
## 2950       341.5       42.7          26.6         55.2      0.0 2015-2016
## 2951       344.4       42.5          26.2         52.8      0.0 2015-2016
## 2952       342.4       38.0          22.6          8.7      0.0 2015-2016
## 2953       340.5       38.5          22.2          8.7      0.0 2015-2016
## 2954       339.6       42.5          27.6         52.0      0.0 2015-2016
## 2955       347.4       41.0          25.5         31.5      0.0 2015-2016
## 2956       349.5       40.8          23.9          9.3      0.0 2015-2016
## 2957       344.0       46.5          28.2         57.3      0.0 2015-2016
## 2958       350.6       39.2          23.3         34.3      0.0 2015-2016
## 2959       349.6       45.0          29.8         32.4      0.0 2015-2016
## 2960       340.6       48.1          31.0         79.0      0.0 2015-2016
## 2961       341.2       44.2          27.0         31.6      0.0 2015-2016
## 2962       345.9       42.3          25.8         32.8      0.0 2015-2016
## 2963       327.9       37.6          22.6          9.3      0.0 2015-2016
## 2964       344.1       46.0          30.0         53.6      0.0 2015-2016
## 2965       341.5       39.9          24.4         52.1      0.0 2015-2016
## 2966       344.7       47.6          31.4         55.1      0.0 2015-2016
## 2967       345.9       45.6          29.4         33.6      0.0 2015-2016
## 2968       342.5       41.8          25.8         33.4      0.0 2015-2016
## 2969       347.9       41.8          25.0         10.2      0.0 2015-2016
## 2970       345.3       43.1          27.4          9.8      0.0 2015-2016
## 2971       348.4       54.9          40.2         33.8      0.0 2015-2016
## 2972       355.1       45.2          29.0         10.5      0.0 2015-2016
## 2973       345.0       42.4          25.1         78.4      0.0 2015-2016
## 2974       344.5       47.0          30.9          9.2      0.0 2015-2016
## 2975       353.0       48.3          30.7         80.7      0.0 2015-2016
## 2976       335.0       44.8          29.7         33.0      0.0 2015-2016
## 2977       338.4       39.2          22.7         33.3      0.0 2015-2016
## 2978       346.1       50.2          32.7         34.2      0.0 2015-2016
## 2979       361.5       41.1          24.9          9.9      0.0 2015-2016
## 2980       349.9       47.7          31.1         57.9      0.0 2015-2016
## 2981       353.5       54.5          38.2          8.8      0.0 2015-2016
## 2982       340.5       41.0          24.8         59.1      0.0 2015-2016
## 2983       356.2       37.6          22.3         81.7      0.0 2015-2016
## 2984       352.7       43.9          27.8         32.7      0.0 2015-2016
## 2985       343.6       47.9          29.3         58.9      0.0 2015-2016
## 2986       351.2       40.4          24.3         57.3      0.0 2015-2016
## 2987       356.6       57.2          40.4         58.4      0.0 2015-2016
## 2988       351.4       49.1          34.7         85.2      0.0 2015-2016
## 2989       354.7       38.9          21.8         61.9      0.0 2015-2016
## 2990       363.9       41.9          23.5         61.5      0.0 2015-2016
## 2991       344.0       46.2          24.3         33.9      0.0 2015-2016
## 2992       348.0       47.6          30.1         59.1      0.0 2015-2016
## 2993       374.6       45.5          29.2         60.5      0.0 2015-2016
## 2994       371.8       47.8          29.9         84.6      0.0 2015-2016
## 2995       433.0       41.2          26.0          5.1      0.0 2015-2016
## 2996       436.5       43.1          28.0          5.0      0.0 2015-2016
## 2997       440.9       40.6          23.0          5.1      0.0 2015-2016
## 2998       435.2       38.3          22.0          4.8      0.0 2015-2016
## 2999       431.6       40.2          24.0         26.6      0.0 2015-2016
## 3000       432.2       41.0          24.0         26.3      0.0 2015-2016
## 3001       434.5       42.5          25.0          5.4      0.0 2015-2016
## 3002       433.3       42.9          26.0         27.9      0.0 2015-2016
## 3003       430.4       41.4          25.0         25.9      0.0 2015-2016
## 3004       441.4       42.3          25.0          5.2      0.0 2015-2016
## 3005       427.5       41.6          22.0         26.8      0.0 2015-2016
## 3006       444.1       41.0          23.0          5.5      0.0 2015-2016
## 3007       451.8       47.4          32.0          4.8      0.0 2015-2016
## 3008       444.0       43.8          26.0         25.6      0.0 2015-2016
## 3009       452.3       43.6          23.0          5.0      0.0 2015-2016
## 3010       438.2       44.0          26.0         25.3      0.0 2015-2016
## 3011       443.5       44.8          29.0          4.9      0.0 2015-2016
## 3012       434.6       41.9          24.0         26.6      0.0 2015-2016
## 3013       445.0       44.3          26.0         27.3      0.0 2015-2016
## 3014       441.6       42.6          25.0          5.6      0.0 2015-2016
## 3015       440.7       43.0          27.0         27.5      0.0 2015-2016
## 3016       439.5       42.1          26.0          5.5      0.0 2015-2016
## 3017       429.6       51.4          35.0         68.2      0.0 2015-2016
## 3018       450.5       42.0          25.0          5.3      0.0 2015-2016
## 3019       449.6       45.3          25.0         28.3      0.0 2015-2016
## 3020       451.7       40.9          23.0          4.8      0.0 2015-2016
## 3021       449.0       38.3          22.0         27.6      0.0 2015-2016
## 3022       439.3       47.6          28.0          5.3      0.0 2015-2016
## 3023       447.6       50.2          33.0          5.4      0.0 2015-2016
## 3024       444.5       45.3          27.0         48.4      0.0 2015-2016
## 3025       440.0       49.7          32.0         26.8      0.0 2015-2016
## 3026       436.9       43.1          26.0         46.2      0.0 2015-2016
## 3027       446.4       46.1          28.0          5.3      0.0 2015-2016
## 3028       455.4       46.4          28.0          6.0      0.0 2015-2016
## 3029       456.4       44.6          26.0         27.0      0.0 2015-2016
## 3030       455.8       41.5          24.0         26.5      0.0 2015-2016
## 3031       453.2       42.0          23.0          5.5      0.0 2015-2016
## 3032       439.3       50.0          33.0         48.1      0.0 2015-2016
## 3033       439.5       46.7          29.0         25.0      0.0 2015-2016
## 3034       445.2       48.1          30.0         27.0      0.0 2015-2016
## 3035       451.3       51.7          35.0         26.6      0.0 2015-2016
## 3036       462.9       43.5          26.0          5.3      0.0 2015-2016
## 3037       443.3       46.5          29.0          5.5      0.0 2015-2016
## 3038       459.9       41.7          26.0          5.0      0.0 2015-2016
## 3039       447.7       56.5          39.0         27.6      0.0 2015-2016
## 3040       441.9       44.8          27.0         49.3      0.0 2015-2016
## 3041       460.0       42.6          25.0          5.1      0.0 2015-2016
## 3042       472.2       36.8          20.0          4.6      0.0 2015-2016
## 3043       452.0       42.6          23.0         27.1      0.0 2015-2016
## 3044       430.7       55.3          38.0         89.3      0.0 2015-2016
## 3045       460.4       46.3          29.0         27.0      0.0 2015-2016
## 3046       456.0       41.8          25.0         27.4      0.0 2015-2016
## 3047       455.3       48.6          32.0         27.5      0.0 2015-2016
## 3048       452.9       48.9          31.0         27.9      0.0 2015-2016
## 3049       447.2       44.2          27.0         27.7      0.0 2015-2016
## 3050       453.5       47.6          28.0         51.4      0.0 2015-2016
## 3051       449.4       46.2          27.0         49.9      0.0 2015-2016
## 3052       447.6       44.9          26.0         49.7      0.0 2015-2016
## 3053       470.6       42.9          24.0          5.5      0.0 2015-2016
## 3054       459.5       46.1          28.0         27.3      0.0 2015-2016
## 3055       466.0       45.4          27.0          5.5      0.0 2015-2016
## 3056       473.8       43.4          26.0          5.4      0.0 2015-2016
## 3057       454.2       44.6          26.0         50.5      0.0 2015-2016
## 3058       438.9       42.1          24.0         72.1      0.0 2015-2016
## 3059       466.0       50.5          32.0          5.2      0.0 2015-2016
## 3060       471.7       42.3          25.0          6.3      0.0 2015-2016
## 3061       444.3       43.6          26.0         28.3      0.0 2015-2016
## 3062       460.0       46.8          30.0         28.4      0.0 2015-2016
## 3063       466.1       42.2          25.0         27.4      0.0 2015-2016
## 3064       471.0       42.9          26.0          4.4      0.0 2015-2016
## 3065       452.0       43.7          26.0         26.9      0.0 2015-2016
## 3066       456.2       54.2          35.0         50.7      0.0 2015-2016
## 3067       456.9       48.7          33.0         29.6      0.0 2015-2016
## 3068       470.6       53.6          37.0          5.8      0.0 2015-2016
## 3069       465.3       47.8          27.0          5.3      0.0 2015-2016
## 3070       453.3       46.8          29.0         50.3      0.0 2015-2016
## 3071       445.9       50.9          31.0         74.3      0.0 2015-2016
## 3072       457.8       51.3          33.0         29.2      0.0 2015-2016
## 3073       487.6       45.8          28.0          5.5      0.0 2015-2016
## 3074       463.7       46.9          29.0         50.2      0.0 2015-2016
## 3075       470.5       52.8          35.0          5.5      0.0 2015-2016
## 3076       458.7       45.4          28.0         72.5      0.0 2015-2016
## 3077       444.5       51.8          32.0         69.7      0.0 2015-2016
## 3078       487.6       49.7          32.0          5.4      0.0 2015-2016
## 3079       474.3       46.1          27.0         28.0      0.0 2015-2016
## 3080       459.9       50.9          30.0         75.1      0.0 2015-2016
## 3081       473.7       46.1          28.0         51.0      0.0 2015-2016
## 3082       475.3       49.7          29.0          5.8      0.0 2015-2016
## 3083       464.8       45.3          26.0         54.0      0.0 2015-2016
## 3084       466.9       51.4          34.0         27.8      0.0 2015-2016
## 3085       483.8       47.2          29.0         30.1      0.0 2015-2016
## 3086       475.7       48.1          28.0         51.0      0.0 2015-2016
## 3087       469.8       45.2          24.0         56.4      0.0 2015-2016
## 3088       485.3       49.1          31.0          5.9      0.0 2015-2016
## 3089       496.5       54.3          32.0          6.8      0.0 2015-2016
## 3090       476.9       56.5          36.0         53.7      0.0 2015-2016
## 3091       498.3       51.2          32.0         28.7      0.0 2015-2016
## 3092       494.9       55.0          37.0         26.5      0.0 2015-2016
## 3093       508.6       46.7          28.0         28.7      0.0 2015-2016
## 3094       478.0       67.1          48.0         53.7      0.0 2015-2016
## 3095       488.7       67.8          48.0         53.4      0.0 2015-2016
## 3096       504.8       46.2          30.0         78.6      0.0 2015-2016
## 3097       396.3       39.7          24.0          6.1      0.0 2015-2016
## 3098       378.3       37.9          22.0          5.5      0.0 2015-2016
## 3099       375.5       37.0          23.0          5.4      0.0 2015-2016
## 3100       380.6       39.0          23.0          5.1      0.0 2015-2016
## 3101       379.5       39.0          26.0          5.2      0.0 2015-2016
## 3102       392.7       43.4          29.0          5.5      0.0 2015-2016
## 3103       379.4       37.1          21.0          5.3      0.0 2015-2016
## 3104       384.4       37.1          21.0          5.6      0.0 2015-2016
## 3105       389.0       39.8          26.0          4.7      0.0 2015-2016
## 3106       400.3       35.8          22.0         28.5      0.0 2015-2016
## 3107       375.8       39.6          24.0         25.9      0.0 2015-2016
## 3108       379.7       38.5          23.0         26.0      0.0 2015-2016
## 3109       381.5       43.0          27.0          5.5      0.0 2015-2016
## 3110       392.9       38.6          23.0         47.8      0.0 2015-2016
## 3111       375.3       42.4          25.0         27.0      0.0 2015-2016
## 3112       396.1       44.2          27.0          5.4      0.0 2015-2016
## 3113       378.7       42.3          26.0         27.3      0.0 2015-2016
## 3114       389.8       43.0          26.0          5.0      0.0 2015-2016
## 3115       389.7       52.1          37.0         48.3      0.0 2015-2016
## 3116       394.2       41.8          24.0          5.0      0.0 2015-2016
## 3117       382.3       37.5          21.0         48.3      0.0 2015-2016
## 3118       388.2       43.8          26.0         25.9      0.0 2015-2016
## 3119       400.0       45.8          27.0         27.7      0.0 2015-2016
## 3120       389.7       48.2          30.0         27.5      0.0 2015-2016
## 3121       393.3       46.4          29.0         27.1      0.0 2015-2016
## 3122       400.2       46.0          28.0         27.5      0.0 2015-2016
## 3123       392.3       44.6          28.0         26.6      0.0 2015-2016
## 3124       420.9       36.2          19.0          5.7      0.0 2015-2016
## 3125       412.8       43.2          24.0         27.3      0.0 2015-2016
## 3126       428.8       41.9          23.0         52.9      0.0 2015-2016
## 3127       333.1       38.2          24.0          6.5      0.0 2015-2016
## 3128       333.1       34.4          22.0         28.3      0.0 2015-2016
## 3129       334.8       38.7          24.0          5.4      0.0 2015-2016
## 3130       330.0       41.3          25.0         26.5      0.0 2015-2016
## 3131       336.7       38.7          23.0          5.6      0.0 2015-2016
## 3132       335.1       38.5          25.0         27.3      0.0 2015-2016
## 3133       335.9       39.1          25.0         27.9      0.0 2015-2016
## 3134       341.5       40.5          24.0         28.1      0.0 2015-2016
## 3135       342.4       41.2          24.0          5.0      0.0 2015-2016
## 3136       339.8       47.2          30.0          5.3      0.0 2015-2016
## 3137       338.9       41.5          25.0          4.9      0.0 2015-2016
## 3138       342.8       44.8          27.0          5.3      0.0 2015-2016
## 3139       335.2       43.2          30.0         48.7      0.0 2015-2016
## 3140       340.7       48.0          30.0          5.3      0.0 2015-2016
## 3141       339.9       44.2          29.0         26.8      0.0 2015-2016
## 3142       343.6       39.2          21.0          5.6      0.0 2015-2016
## 3143       340.6       41.8          25.0         28.0      0.0 2015-2016
## 3144       338.6       39.8          25.0         25.6      0.0 2015-2016
## 3145       330.5       47.6          29.0         26.9      0.0 2015-2016
## 3146       342.6       44.5          29.0         28.9      0.0 2015-2016
## 3147       334.5       46.6          28.0         26.7      0.0 2015-2016
## 3148       337.2       45.6          29.0         26.6      0.0 2015-2016
## 3149       336.8       42.2          23.0         27.7      0.0 2015-2016
## 3150       349.8       43.9          24.0         28.1      0.0 2015-2016
## 3151       333.8       44.0          24.0         27.0      0.0 2015-2016
## 3152       343.0       38.5          23.0          5.5      0.0 2015-2016
## 3153       344.9       43.6          26.0          5.2      0.0 2015-2016
## 3154       347.0       37.7          22.0          5.9      0.0 2015-2016
## 3155       346.2       45.9          26.0         27.6      0.0 2015-2016
## 3156       337.7       45.3          29.0         48.5      0.0 2015-2016
## 3157       343.1       37.5          21.0         28.3      0.0 2015-2016
## 3158       338.9       48.9          33.0         47.3      0.0 2015-2016
## 3159       339.1       43.0          26.0         29.4      0.0 2015-2016
## 3160       351.8       44.3          26.0          5.8      0.0 2015-2016
## 3161       364.1       36.0          28.0          5.8      0.0 2015-2016
## 3162       340.2       46.3          31.0         26.9      0.0 2015-2016
## 3163       335.3       43.1          25.0         49.9      0.0 2015-2016
## 3164       342.3       43.6          25.0         54.1      0.0 2015-2016
## 3165       343.6       40.0          23.0          5.7      0.0 2015-2016
## 3166       345.1       44.5          28.0          5.6      0.0 2015-2016
## 3167       354.6       42.4          24.0         52.3      0.0 2015-2016
## 3168       357.5       47.5          31.0          5.5      0.0 2015-2016
## 3169       344.7       47.0          30.0         74.9      0.0 2015-2016
## 3170       361.6       44.9          28.0         28.9      0.0 2015-2016
## 3171       364.4       42.1          32.0          5.4      0.0 2015-2016
## 3172       350.1       42.7          25.0         30.7      0.0 2015-2016
## 3173       370.7       45.6          28.0          5.8      0.0 2015-2016
## 3174       355.4       43.7          27.0         53.2      0.0 2015-2016
## 3175       366.9       39.3          28.0         30.8      0.0 2015-2016
## 3176       362.5       41.1          23.0          5.3      0.0 2015-2016
## 3177       349.4       45.2          28.0         51.6      0.0 2015-2016
## 3178       351.7       52.7          33.0         29.0      0.0 2015-2016
## 3179       356.9       45.3          25.0          5.6      0.0 2015-2016
## 3180       353.7       45.0          27.0          5.5      0.0 2015-2016
## 3181       376.0       51.7          29.0         54.4      0.0 2015-2016
## 3182       357.5       49.0          29.0         29.9      0.0 2015-2016
## 3183       348.4       43.1          23.0         32.6      0.0 2015-2016
## 3184       369.0       41.6          21.0         30.5      0.0 2015-2016
## 3185       377.4       44.0          25.0        130.5      0.0 2015-2016
## 3186       460.2       44.6          25.0          6.4      0.0 2015-2016
## 3187       473.8       47.4          26.0          6.3      0.0 2015-2016
## 3188       455.5       57.5          37.0         26.3      0.0 2015-2016
## 3189       480.0       48.4          28.0          6.3      0.0 2015-2016
## 3190       475.6       47.2          26.0         29.2      0.0 2015-2016
## 3191       471.7       46.8          25.0         29.0      0.0 2015-2016
## 3192       456.6       52.5          33.0         26.7      0.0 2015-2016
## 3193       475.7       49.0          26.0         27.7      0.0 2015-2016
## 3194       478.9       46.5          25.0         29.0      0.0 2015-2016
## 3195       474.0       51.6          31.0         28.2      0.0 2015-2016
## 3196       484.7       39.4          17.0          6.4      0.0 2015-2016
## 3197       467.0       53.7          34.0         50.3      0.0 2015-2016
## 3198       475.8       47.8          25.0         28.7      0.0 2015-2016
## 3199       480.7       46.7          26.0          6.6      0.0 2015-2016
## 3200       483.8       49.3          23.0         29.5      0.0 2015-2016
## 3201       483.6       50.2          27.0          6.6      0.0 2015-2016
## 3202       477.3       46.2          23.0         29.0      0.0 2015-2016
## 3203       490.8       42.4          23.0          6.3      0.0 2015-2016
## 3204       509.1       44.0          24.0          6.7      0.0 2015-2016
## 3205       479.3       47.6          27.0         28.0      0.0 2015-2016
## 3206       469.5       46.5          37.0         28.0      0.0 2015-2016
## 3207       465.7       48.9          29.0         48.8      0.0 2015-2016
## 3208       481.9       48.0          27.0          6.3      0.0 2015-2016
## 3209       490.1       47.6          26.0         29.6      0.0 2015-2016
## 3210       481.8       48.2          26.0          6.7      0.0 2015-2016
## 3211       486.8       48.5          27.0         30.0      0.0 2015-2016
## 3212       468.4       51.3          30.0         71.4      0.0 2015-2016
## 3213       481.9       45.5          26.0         29.9      0.0 2015-2016
## 3214       485.2       51.5          29.0         27.8      0.0 2015-2016
## 3215       501.7       46.1          24.0          6.4      0.0 2015-2016
## 3216       481.8       52.3          30.0         53.9      0.0 2015-2016
## 3217       481.3       47.2          25.0         30.3      0.0 2015-2016
## 3218       475.7       47.5          25.0         53.5      0.0 2015-2016
## 3219       476.6       46.8          29.0         49.2      0.0 2015-2016
## 3220       475.3       48.5          28.0          6.3      0.0 2015-2016
## 3221       477.5       46.3          27.0         75.6      0.0 2015-2016
## 3222       489.0       44.7          21.0         52.9      0.0 2015-2016
## 3223       485.0       68.2          46.0         29.9      0.0 2015-2016
## 3224       490.0       49.8          27.0         51.3      0.0 2015-2016
## 3225       479.7       59.1          37.0         27.9      0.0 2015-2016
## 3226       483.0       50.8          26.0          6.5      0.0 2015-2016
## 3227       482.1       50.0          28.0         29.3      0.0 2015-2016
## 3228       502.7       46.4          24.0          6.7      0.0 2015-2016
## 3229       486.8       45.6          24.0         28.4      0.0 2015-2016
## 3230       482.5       47.8          26.0         51.7      0.0 2015-2016
## 3231       506.1       50.1          27.0          6.8      0.0 2015-2016
## 3232       506.2       51.0          29.0          7.1      0.0 2015-2016
## 3233       500.7       50.8          29.0         26.8      0.0 2015-2016
## 3234       495.8       48.6          25.0         55.1      0.0 2015-2016
## 3235       507.9       48.5          26.0          6.7      0.0 2015-2016
## 3236       495.7       48.6          25.0         29.4      0.0 2015-2016
## 3237       485.5       42.9          21.0         29.6      0.0 2015-2016
## 3238       498.3       49.5          27.0         54.3      0.0 2015-2016
## 3239       499.5       45.8          23.0         31.1      0.0 2015-2016
## 3240       479.7       56.5          35.0         78.2      0.0 2015-2016
## 3241       502.8       50.5          26.0         31.5      0.0 2015-2016
## 3242       515.8       42.3          21.0         30.4      0.0 2015-2016
## 3243       504.8       49.8          27.0          6.7      0.0 2015-2016
## 3244       491.1       48.4          26.0          6.6      0.0 2015-2016
## 3245       516.9       51.6          30.0          7.7      0.0 2015-2016
## 3246       507.9       45.8          25.0         29.3      0.0 2015-2016
## 3247       494.9       51.6          29.0         29.4      0.0 2015-2016
## 3248       499.7       46.4          24.0          6.4      0.0 2015-2016
## 3249       498.1       50.1          26.0         30.4      0.0 2015-2016
## 3250       502.9       44.2          22.0         30.6      0.0 2015-2016
## 3251       498.4       45.8          22.0         30.8      0.0 2015-2016
## 3252       511.2       44.2          23.0         56.3      0.0 2015-2016
## 3253       493.7       47.4          24.0         31.2      0.0 2015-2016
## 3254       494.5       54.3          30.0         54.8      0.0 2015-2016
## 3255       509.2       48.5          27.0         55.4      0.0 2015-2016
## 3256       507.0       43.5          21.0         30.1      0.0 2015-2016
## 3257       491.4       46.9          26.0         53.1      0.0 2015-2016
## 3258       518.4       46.9          28.0          6.6      0.0 2015-2016
## 3259       534.2       53.2          32.0         30.1      0.0 2015-2016
## 3260       500.3       50.3          29.0         53.0      0.0 2015-2016
## 3261       511.6       48.2          26.0         54.6      0.0 2015-2016
## 3262       496.6       53.5          30.0         52.8      0.0 2015-2016
## 3263       529.5       52.9          30.0          6.7      0.0 2015-2016
## 3264       510.4       52.5          29.0         57.8      0.0 2015-2016
## 3265       524.1       49.9          26.0         32.0      0.0 2015-2016
## 3266       518.2       50.8          28.0          6.8      0.0 2015-2016
## 3267       518.9       61.6          40.0         53.3      0.0 2015-2016
## 3268       499.5       50.8          28.0         79.8      0.0 2015-2016
## 3269       516.1       56.7          31.0         56.2      0.0 2015-2016
## 3270       502.7       51.3          27.0         59.4      0.0 2015-2016
## 3271       539.8       50.9          27.0         31.2      0.0 2015-2016
## 3272       508.8       49.9          26.0         59.8      0.0 2015-2016
## 3273       545.0       50.0          26.0         33.6      0.0 2015-2016
## 3274       321.5       43.2          24.0          7.0      0.0 2015-2016
## 3275       324.5       48.4          28.0         50.8      0.0 2015-2016
## 3276       326.7       50.6          29.0         28.9      0.0 2015-2016
## 3277       332.7       47.5          28.0         29.2      0.0 2015-2016
## 3278       332.6       58.9          38.0         29.1      0.0 2015-2016
## 3279       328.1       56.1          36.0         28.3      0.0 2015-2016
## 3280       332.3       60.3          40.0         49.9      0.0 2015-2016
## 3281       319.5       49.0          28.0          6.4      0.0 2015-2016
## 3282       331.5       52.0          31.0         29.6      0.0 2015-2016
## 3283       330.0       48.0          27.0         29.4      0.0 2015-2016
## 3284       335.2       50.3          29.0         53.1      0.0 2015-2016
## 3285       321.8       55.3          33.0         28.0      0.0 2015-2016
## 3286       336.9       62.3          40.0         76.1      0.0 2015-2016
## 3287       325.5       50.4          30.0         28.0      0.0 2015-2016
## 3288       325.8       49.6          27.0         28.1      0.0 2015-2016
## 3289       330.5       49.7          29.0         29.5      0.0 2015-2016
## 3290       326.3       61.6          40.0         51.6      0.0 2015-2016
## 3291       334.2       52.6          35.0         28.8      0.0 2015-2016
## 3292       326.4       54.4          30.0         51.0      0.0 2015-2016
## 3293       331.3       43.9          25.0         28.7      0.0 2015-2016
## 3294       327.3       62.7          41.0         94.4      0.0 2015-2016
## 3295       317.1       55.5          34.0         72.0      0.0 2015-2016
## 3296       329.6       52.7          31.0         52.7      0.0 2015-2016
## 3297       344.7       54.2          34.0         29.6      0.0 2015-2016
## 3298       334.4       47.1          25.0          7.4      0.0 2015-2016
## 3299       346.8       51.0          30.0         29.0      0.0 2015-2016
## 3300       338.6       44.8          24.0         30.2      0.0 2015-2016
## 3301       335.4       50.0          29.0          6.5      0.0 2015-2016
## 3302       336.3       50.5          29.0         28.5      0.0 2015-2016
## 3303       343.2       47.8          25.0          7.9      0.0 2015-2016
## 3304       340.1       51.1          31.0         53.8      0.0 2015-2016
## 3305       333.8       49.3          27.0          6.5      0.0 2015-2016
## 3306       338.3       48.3          26.0         30.5      0.0 2015-2016
## 3307       332.7       52.7          29.0         54.0      0.0 2015-2016
## 3308       324.3       59.9          39.0         30.5      0.0 2015-2016
## 3309       342.6       54.0          33.0         75.4      0.0 2015-2016
## 3310       335.4       63.4          43.0         31.0      0.0 2015-2016
## 3311       331.8       43.9          21.0         74.5      0.0 2015-2016
## 3312       336.0       72.6          51.0         80.3      0.0 2015-2016
## 3313       334.1       56.5          34.0         78.5      0.0 2015-2016
## 3314       338.3       46.5          25.0         29.0      0.0 2015-2016
## 3315       339.1       48.6          24.0         29.2      0.0 2015-2016
## 3316       361.5       60.3          39.0          7.7      0.0 2015-2016
## 3317       327.0       53.9          30.0         50.3      0.0 2015-2016
## 3318       346.2       50.6          29.0        104.9      0.0 2015-2016
## 3319       336.0       65.1          45.0         78.7      0.0 2015-2016
## 3320       342.3       48.8          26.0         51.6      0.0 2015-2016
## 3321       352.1       64.4          40.0         31.4      0.0 2015-2016
## 3322       346.4       50.3          28.0         82.8      0.0 2015-2016
## 3323       358.4       66.5          47.0          6.6      0.0 2015-2016
## 3324       331.7       57.5          37.0        106.0      0.0 2015-2016
## 3325       352.6       54.1          30.0         57.1      0.0 2015-2016
## 3326       338.5       60.4          39.0         82.5      0.0 2015-2016
## 3327       413.4       41.2          22.0          3.2      0.0 2015-2016
## 3328       415.0       43.1          23.0          3.0      0.0 2015-2016
## 3329       415.0       42.7          24.0          3.0      0.0 2015-2016
## 3330       410.5       40.0          20.0          3.0      0.0 2015-2016
## 3331       417.3       46.0          25.0          3.0      0.0 2015-2016
## 3332       426.8       39.5          18.0          2.9      0.0 2015-2016
## 3333       430.9       45.8          24.0          3.1      0.0 2015-2016
## 3334       422.3       48.9          29.0          3.1      0.0 2015-2016
## 3335       415.9       43.7          23.0         23.2      0.0 2015-2016
## 3336       421.2       45.2          24.0         25.1      0.0 2015-2016
## 3337       418.2       44.0          24.0         25.4      0.0 2015-2016
## 3338       421.9       50.0          30.0          2.9      0.0 2015-2016
## 3339       424.1       42.8          20.0          3.2      0.0 2015-2016
## 3340       416.0       49.4          29.0          3.1      0.0 2015-2016
## 3341       415.6       43.0          24.0         47.5      0.0 2015-2016
## 3342       408.3       45.9          25.0         44.1      0.0 2015-2016
## 3343       428.7       50.7          30.0          3.2      0.0 2015-2016
## 3344       423.1       45.9          25.0         23.7      0.0 2015-2016
## 3345       418.8       49.5          27.0         24.1      0.0 2015-2016
## 3346       428.9       47.4          27.0          3.1      0.0 2015-2016
## 3347       433.1       48.1          26.0          3.0      0.0 2015-2016
## 3348       428.1       47.3          28.0          3.1      0.0 2015-2016
## 3349       431.4       47.1          26.0          3.2      0.0 2015-2016
## 3350       425.7       46.7          25.0         26.4      0.0 2015-2016
## 3351       431.0       49.0          28.0          3.2      0.0 2015-2016
## 3352       432.2       40.4          19.0          3.1      0.0 2015-2016
## 3353       427.9       47.6          24.0         24.4      0.0 2015-2016
## 3354       424.3       46.3          24.0         26.1      0.0 2015-2016
## 3355       427.5       53.5          30.0          3.6      0.0 2015-2016
## 3356       437.5       45.2          24.0          3.3      0.0 2015-2016
## 3357       418.9       45.3          24.0         48.0      0.0 2015-2016
## 3358       422.0       46.4          26.0         43.8      0.0 2015-2016
## 3359       423.9       47.1          25.0         24.3      0.0 2015-2016
## 3360       437.3       47.2          25.0          3.3      0.0 2015-2016
## 3361       424.7       47.1          27.0         24.9      0.0 2015-2016
## 3362       438.8       43.6          23.0          3.4      0.0 2015-2016
## 3363       423.7       43.3          21.0          3.1      0.0 2015-2016
## 3364       426.7       50.4          28.0          3.2      0.0 2015-2016
## 3365       427.2       43.7          22.0          3.2      0.0 2015-2016
## 3366       427.5       44.5          23.0         49.0      0.0 2015-2016
## 3367       435.1       43.7          23.0         26.9      0.0 2015-2016
## 3368       433.3       45.6          25.0         24.2      0.0 2015-2016
## 3369       432.1       50.7          28.0         48.2      0.0 2015-2016
## 3370       425.4       40.9          22.0         24.4      0.0 2015-2016
## 3371       427.3       43.7          23.0         24.7      0.0 2015-2016
## 3372       447.9       47.3          24.0          3.2      0.0 2015-2016
## 3373       425.9       45.0          23.0         24.7      0.0 2015-2016
## 3374       436.4       44.5          24.0          3.3      0.0 2015-2016
## 3375       443.9       42.8          21.0          3.0      0.0 2015-2016
## 3376       439.0       46.9          25.0          3.2      0.0 2015-2016
## 3377       438.0       40.6          19.0          3.0      0.0 2015-2016
## 3378       430.3       53.2          33.0         25.0      0.0 2015-2016
## 3379       430.3       47.0          27.0          2.9      0.0 2015-2016
## 3380       434.1       47.4          26.0         24.5      0.0 2015-2016
## 3381       426.2       51.1          29.0         26.7      0.0 2015-2016
## 3382       431.6       43.5          22.0         26.5      0.0 2015-2016
## 3383       433.6       49.4          27.0         45.3      0.0 2015-2016
## 3384       436.3       53.2          31.0          3.2      0.0 2015-2016
## 3385       429.5       47.0          26.0         24.1      0.0 2015-2016
## 3386       446.1       49.5          28.0          3.1      0.0 2015-2016
## 3387       409.4       48.5          27.0         88.8      0.0 2015-2016
## 3388       438.9       48.3          27.0          3.1      0.0 2015-2016
## 3389       414.5       51.2          30.0         67.7      0.0 2015-2016
## 3390       446.6       53.2          31.0          3.1      0.0 2015-2016
## 3391       432.0       45.5          26.0         25.7      0.0 2015-2016
## 3392       428.3       46.8          26.0         26.3      0.0 2015-2016
## 3393       431.5       46.6          25.0         47.4      0.0 2015-2016
## 3394       436.6       46.6          24.0         46.7      0.0 2015-2016
## 3395       443.1       45.0          24.0         26.4      0.0 2015-2016
## 3396       443.6       46.8          25.0         26.3      0.0 2015-2016
## 3397       428.8       44.9          22.0         24.1      0.0 2015-2016
## 3398       436.3       43.2          22.0         24.6      0.0 2015-2016
## 3399       436.6       48.7          28.0          2.8      0.0 2015-2016
## 3400       436.3       43.1          23.0         45.7      0.0 2015-2016
## 3401       435.4       47.6          25.0         47.2      0.0 2015-2016
## 3402       447.0       47.1          24.0         25.6      0.0 2015-2016
## 3403       442.1       50.5          29.0         25.1      0.0 2015-2016
## 3404       438.7       53.9          33.0         48.7      0.0 2015-2016
## 3405       454.4       44.6          23.0         24.8      0.0 2015-2016
## 3406       454.7       40.4          21.0         24.3      0.0 2015-2016
## 3407       447.4       44.5          23.0         26.2      0.0 2015-2016
## 3408       415.7       46.9          25.0         46.6      0.0 2015-2016
## 3409       443.2       47.7          24.0          3.4      0.0 2015-2016
## 3410       435.4       43.5          21.0         49.5      0.0 2015-2016
## 3411       451.9       51.6          28.0         27.0      0.0 2015-2016
## 3412       440.7       49.6          28.0         47.7      0.0 2015-2016
## 3413       450.5       77.7          55.0         24.5      0.0 2015-2016
## 3414       438.0       49.4          27.0         25.4      0.0 2015-2016
## 3415       451.1       46.0          24.0         24.7      0.0 2015-2016
## 3416       443.6       47.8          27.0         46.8      0.0 2015-2016
## 3417       453.1       49.1          27.0         47.8      0.0 2015-2016
## 3418       451.4       50.1          26.0          3.0      0.0 2015-2016
## 3419       460.7       54.6          33.0          2.9      0.0 2015-2016
## 3420       434.2       57.5          35.0         68.3      0.0 2015-2016
## 3421       463.0       44.8          24.0          3.5      0.0 2015-2016
## 3422       435.9       57.2          33.0         53.0      0.0 2015-2016
## 3423       458.8       50.1          27.0         24.1      0.0 2015-2016
## 3424       431.4       57.4          35.0        100.1      0.0 2015-2016
## 3425       469.8       48.1          25.0         48.2      0.0 2015-2016
## 3426       466.1       49.0          25.0         69.5      0.0 2015-2016
## 3427       469.1       47.7          23.0         26.7      0.0 2015-2016
## 3428       461.4       52.2          29.0         50.1      0.0 2015-2016
## 3429       464.5       43.2          23.0          0.0   2544.9 2015-2016
## 3430       477.5       40.7          20.0         60.0   2552.7 2015-2016
## 3431       467.9       44.5          25.0          0.0   2562.8 2015-2016
## 3432       475.0       52.7          31.0          0.0   2626.3 2015-2016
## 3433       488.5       47.0          26.0          0.0   2644.6 2015-2016
## 3434       474.8       43.4          22.0         60.0   2598.9 2015-2016
## 3435       481.6       50.7          27.0         60.0   2632.6 2015-2016
## 3436       472.4       48.5          27.0          0.0   2600.5 2015-2016
## 3437       470.4       54.7          32.0         60.0   2601.2 2015-2016
## 3438       481.2       49.8          29.0          0.0   2665.0 2015-2016
## 3439       476.5       56.6          35.0         60.0   2628.8 2015-2016
## 3440       479.0       48.5          27.0         60.0   2671.7 2015-2016
## 3441       477.7       58.4          38.0          0.0   2665.9 2015-2016
## 3442       486.2       47.2          24.0          0.0   2690.0 2015-2016
## 3443       483.4       44.1          23.0          0.0   2646.2 2015-2016
## 3444       461.6       46.2          25.0        180.0   2532.3 2015-2016
## 3445       467.6       46.3          24.0          0.0   2544.6 2015-2016
## 3446       480.7       58.1          38.0          0.0   2652.8 2015-2016
## 3447       480.9       58.5          36.0         60.0   2648.0 2015-2016
## 3448       485.5       42.2          22.0          0.0   2712.6 2015-2016
## 3449       452.6       62.2          42.0         60.0   2565.1 2015-2016
## 3450       482.8       41.8          21.0        120.0   2596.6 2015-2016
## 3451       485.6       58.5          36.0         60.0   2686.0 2015-2016
## 3452       471.9       52.2          30.0        120.0   2626.3 2015-2016
## 3453       490.7       45.9          22.0         60.0   2670.3 2015-2016
## 3454       494.5       51.8          30.0          0.0   2720.7 2015-2016
## 3455       484.9       46.7          25.0        120.0   2607.0 2015-2016
## 3456       474.4       48.8          27.0        120.0   2661.0 2015-2016
## 3457       474.4       49.0          27.0         60.0   2631.7 2015-2016
## 3458       471.6       48.9          27.0         60.0   2629.6 2015-2016
## 3459       484.3       44.1          24.0          0.0   2634.9 2015-2016
## 3460       484.3       46.3          24.0          0.0   2693.7 2015-2016
## 3461       478.7       51.5          31.0         60.0   2645.1 2015-2016
## 3462       488.2       52.0          30.0          0.0   2696.4 2015-2016
## 3463       479.5       52.1          29.0         60.0   2649.6 2015-2016
## 3464       483.7       42.9          21.0         60.0   2661.0 2015-2016
## 3465       512.1       51.9          29.0         60.0   2752.3 2015-2016
## 3466       474.6       46.8          26.0         60.0   2659.5 2015-2016
## 3467       487.0       46.0          22.0         60.0   2713.6 2015-2016
## 3468       482.6       53.5          31.0         60.0   2652.5 2015-2016
## 3469       476.4       58.7          36.0        180.0   2605.9 2015-2016
## 3470       490.7       54.0          35.0         60.0   2650.2 2015-2016
## 3471       502.4       50.1          27.0         60.0   2735.8 2015-2016
## 3472       481.8       44.9          24.0         60.0   2624.8 2015-2016
## 3473       508.8       53.6          32.0          0.0   2765.5 2015-2016
## 3474       510.8       48.7          24.0          0.0   2755.0 2015-2016
## 3475       497.8       46.8          23.0          0.0   2716.3 2015-2016
## 3476       497.9       41.3          20.0          0.0   2730.1 2015-2016
## 3477       461.3       60.3          39.0         60.0   2575.4 2015-2016
## 3478       485.1       48.8          27.0         60.0   2669.0 2015-2016
## 3479       486.4       45.5          25.0          0.0   2664.6 2015-2016
## 3480       502.5       62.9          40.0          0.0   2744.4 2015-2016
## 3481       492.3       51.4          28.0         60.0   2668.8 2015-2016
## 3482       499.3       51.6          28.0          0.0   2748.7 2015-2016
## 3483       487.0       53.0          32.0        120.0   2666.0 2015-2016
## 3484       477.2       43.7          22.0          0.0   2626.9 2015-2016
## 3485       495.1       45.7          23.0          0.0   2639.8 2015-2016
## 3486       487.6       50.1          27.0         60.0   2699.6 2015-2016
## 3487       493.4       48.8          26.0        120.0   2647.6 2015-2016
## 3488       489.2       46.3          25.0         60.0   2666.0 2015-2016
## 3489       482.0       46.1          22.0         60.0   2647.4 2015-2016
## 3490       510.6       47.3          26.0         60.0   2737.5 2015-2016
## 3491       497.9       67.8          45.0          0.0   2746.4 2015-2016
## 3492       506.6       52.2          29.0        120.0   2688.6 2015-2016
## 3493       491.6       51.7          31.0        120.0   2638.3 2015-2016
## 3494       507.0       61.0          35.0        120.0   2746.9 2015-2016
## 3495       508.5       50.9          26.0         60.0   2771.9 2015-2016
## 3496       494.6       59.0          37.0        120.0   2705.0 2015-2016
## 3497       480.5       48.8          27.0         60.0   2675.6 2015-2016
## 3498       503.4       66.1          45.0        120.0   2771.9 2015-2016
## 3499       497.4       50.7          27.0        180.0   2743.6 2015-2016
## 3500       470.7       41.3          19.0          0.0   2576.5 2015-2016
## 3501       521.7       74.5          51.0          0.0   2867.8 2015-2016
## 3502       498.5       52.2          29.0          0.0   2743.6 2015-2016
## 3503       519.5       50.1          28.0          0.0   2802.8 2015-2016
## 3504       507.2       50.3          26.0          0.0   2741.8 2015-2016
## 3505       479.6       47.5          25.0        120.0   2658.4 2015-2016
## 3506       515.3       56.1          33.0         60.0   2820.6 2015-2016
## 3507       489.4       59.6          35.0        180.0   2655.9 2015-2016
## 3508       501.9       51.0          27.0         60.0   2764.4 2015-2016
## 3509       510.9       50.5          27.0         60.0   2773.4 2015-2016
## 3510       515.7       60.0          37.0        120.0   2789.2 2015-2016
## 3511       495.7       50.0          27.0         60.0   2732.6 2015-2016
## 3512       517.8       47.1          24.0         60.0   2805.7 2015-2016
## 3513       492.0       52.1          28.0          0.0   2688.8 2015-2016
## 3514       498.0       53.4          31.0         60.0   2699.2 2015-2016
## 3515       517.9       49.6          27.0        180.0   2809.0 2015-2016
## 3516       513.3       58.9          35.0          0.0   2776.8 2015-2016
## 3517       513.2       42.0          19.0         60.0   2723.5 2015-2016
## 3518       501.0       54.7          31.0         60.0   2779.3 2015-2016
## 3519       506.6       53.6          27.0        120.0   2788.5 2015-2016
## 3520       527.3       57.9          36.0        120.0   2808.6 2015-2016
## 3521       492.1       52.9          31.0        120.0   2728.3 2015-2016
## 3522       514.1       63.7          41.0         60.0   2771.0 2015-2016
## 3523       497.2       54.1          31.0         60.0   2703.8 2015-2016
## 3524       465.2       50.9          29.0        240.0   2555.8 2015-2016
## 3525       474.5       44.5          21.0         60.0   2606.4 2015-2016
## 3526       543.9       55.7          33.0         60.0   2898.5 2015-2016
## 3527       550.5       61.1          38.0         60.0   2938.0 2015-2016
## 3528       514.2       44.4          22.0        120.0   2771.3 2015-2016
## 3529       525.1       68.5          44.0        120.0   2835.2 2015-2016
## 3530       525.7       72.6          48.0        240.0   2914.0 2015-2016
## 3531       519.4       64.5          40.0        120.0   2798.0 2015-2016
## 3532       447.7       48.2          27.0          3.3      0.0 2015-2016
## 3533       442.1       44.9          24.0         26.2      0.0 2015-2016
## 3534       441.6       45.8          25.0         25.4      0.0 2015-2016
## 3535       457.3       46.5          25.0          3.6      0.0 2015-2016
## 3536       462.7       52.3          31.0          3.2      0.0 2015-2016
## 3537       448.4       49.9          27.0          3.3      0.0 2015-2016
## 3538       462.7       47.7          25.0         26.7      0.0 2015-2016
## 3539       463.8       49.8          27.0          3.3      0.0 2015-2016
## 3540       462.9       47.5          24.0          3.5      0.0 2015-2016
## 3541       464.9       48.3          25.0          3.8      0.0 2015-2016
## 3542       454.9       46.5          24.0          3.3      0.0 2015-2016
## 3543       458.2       47.0          24.0         26.0      0.0 2015-2016
## 3544       449.6       43.7          21.0          3.4      0.0 2015-2016
## 3545       466.7       48.6          26.0         26.9      0.0 2015-2016
## 3546       470.5       46.8          24.0          3.4      0.0 2015-2016
## 3547       463.1       47.2          25.0         26.5      0.0 2015-2016
## 3548       466.8       55.2          32.0         26.4      0.0 2015-2016
## 3549       457.2       52.3          32.0          3.5      0.0 2015-2016
## 3550       450.3       49.8          28.0         51.7      0.0 2015-2016
## 3551       480.1       49.9          29.0          3.4      0.0 2015-2016
## 3552       476.0       47.9          24.0          3.6      0.0 2015-2016
## 3553       474.3       46.1          25.0          3.7      0.0 2015-2016
## 3554       457.0       51.6          29.0          3.3      0.0 2015-2016
## 3555       458.1       53.0          32.0         27.3      0.0 2015-2016
## 3556       463.2       48.4          26.0         53.2      0.0 2015-2016
## 3557       461.7       48.3          27.0         52.8      0.0 2015-2016
## 3558       474.8       50.0          29.0          3.5      0.0 2015-2016
## 3559       487.1       50.1          30.0          3.5      0.0 2015-2016
## 3560       465.2       51.1          31.0         52.1      0.0 2015-2016
## 3561       481.2       53.6          34.0         78.4      0.0 2015-2016
## 3562       363.9       41.2          22.0          3.8      0.0 2015-2016
## 3563       373.3       42.5          22.0          3.2      0.0 2015-2016
## 3564       363.5       47.1          24.0          3.0      0.0 2015-2016
## 3565       366.2       44.1          24.0          3.2      0.0 2015-2016
## 3566       379.2       43.9          25.0          2.9      0.0 2015-2016
## 3567       376.3       41.6          21.0          3.4      0.0 2015-2016
## 3568       375.7       42.4          22.0         22.9      0.0 2015-2016
## 3569       370.9       42.1          21.0          3.2      0.0 2015-2016
## 3570       371.3       46.7          27.0          2.9      0.0 2015-2016
## 3571       378.6       41.6          21.0         23.4      0.0 2015-2016
## 3572       369.2       48.1          27.0         22.7      0.0 2015-2016
## 3573       378.4       41.5          23.0         23.3      0.0 2015-2016
## 3574       365.4       45.7          26.0         66.7      0.0 2015-2016
## 3575       377.2       45.0          25.0          3.0      0.0 2015-2016
## 3576       378.2       42.3          24.0          2.8      0.0 2015-2016
## 3577       377.9       46.4          26.0         42.8      0.0 2015-2016
## 3578       381.1       47.0          29.0          3.1      0.0 2015-2016
## 3579       377.1       43.9          24.0         23.7      0.0 2015-2016
## 3580       372.2       45.3          24.0         43.0      0.0 2015-2016
## 3581       392.8       49.6          30.0          2.9      0.0 2015-2016
## 3582       381.0       38.6          19.0          3.1      0.0 2015-2016
## 3583       376.4       40.8          22.0          2.8      0.0 2015-2016
## 3584       371.1       44.9          26.0         24.0      0.0 2015-2016
## 3585       375.2       51.1          30.0         44.3      0.0 2015-2016
## 3586       382.9       41.7          23.0          3.0      0.0 2015-2016
## 3587       365.7       46.7          26.0         86.1      0.0 2015-2016
## 3588       393.7       45.0          26.0          3.1      0.0 2015-2016
## 3589       386.3       49.9          29.0         45.0      0.0 2015-2016
## 3590       393.7       44.9          23.0         24.7      0.0 2015-2016
## 3591       385.4       50.5          30.0         45.1      0.0 2015-2016
## 3592       357.4       41.4          21.0          3.7      0.0 2015-2016
## 3593       357.3       37.6          19.0         26.9      0.0 2015-2016
## 3594       356.3       49.0          27.0          3.5      0.0 2015-2016
## 3595       353.7       40.9          21.0         26.9      0.0 2015-2016
## 3596       355.3       43.3          23.0         26.6      0.0 2015-2016
## 3597       351.9       44.5          27.0          3.4      0.0 2015-2016
## 3598       357.8       42.8          22.0         50.4      0.0 2015-2016
## 3599       359.3       43.3          23.0         26.4      0.0 2015-2016
## 3600       352.4       45.7          25.0         26.0      0.0 2015-2016
## 3601       365.8       44.7          24.0         27.0      0.0 2015-2016
## 3602       351.8       49.9          28.0         27.2      0.0 2015-2016
## 3603       349.8       53.6          31.0         26.4      0.0 2015-2016
## 3604       355.5       44.7          24.0          3.8      0.0 2015-2016
## 3605       355.8       44.3          21.0         26.1      0.0 2015-2016
## 3606       360.0       47.2          26.0         26.1      0.0 2015-2016
## 3607       366.5       49.0          27.0          3.6      0.0 2015-2016
## 3608       355.4       47.0          26.0          3.4      0.0 2015-2016
## 3609       341.1       45.1          25.0         25.7      0.0 2015-2016
## 3610       360.2       41.1          20.0          3.6      0.0 2015-2016
## 3611       356.9       43.8          22.0         26.6      0.0 2015-2016
## 3612       362.2       48.9          29.0         25.9      0.0 2015-2016
## 3613       362.8       47.0          28.0          3.5      0.0 2015-2016
## 3614       356.5       49.0          27.0         51.0      0.0 2015-2016
## 3615       361.1       44.0          25.0          3.4      0.0 2015-2016
## 3616       363.4       51.2          29.0         25.9      0.0 2015-2016
## 3617       356.5       42.7          22.0         49.0      0.0 2015-2016
## 3618       361.2       47.6          26.0         26.8      0.0 2015-2016
## 3619       371.4       45.8          25.0         28.9      0.0 2015-2016
## 3620       373.5       50.5          29.0          4.3      0.0 2015-2016
## 3621       360.3       48.0          28.0         51.1      0.0 2015-2016
## 3622       359.2       41.3          19.0          3.6      0.0 2015-2016
## 3623       356.6       44.5          24.0         28.1      0.0 2015-2016
## 3624       374.4       47.3          28.0         29.0      0.0 2015-2016
## 3625       361.2       39.7          18.0         28.3      0.0 2015-2016
## 3626       362.1       49.3          27.0          3.6      0.0 2015-2016
## 3627       364.9       44.1          23.0         28.2      0.0 2015-2016
## 3628       368.6       46.1          24.0         28.6      0.0 2015-2016
## 3629       365.7       42.1          20.0         29.3      0.0 2015-2016
## 3630       361.9       52.4          31.0         29.0      0.0 2015-2016
## 3631       371.2       50.9          29.0          3.6      0.0 2015-2016
## 3632       367.1       48.2          25.0          3.9      0.0 2015-2016
## 3633       366.7       49.2          26.0         28.1      0.0 2015-2016
## 3634       370.3       44.0          22.0         26.3      0.0 2015-2016
## 3635       363.3       49.9          28.0         49.9      0.0 2015-2016
## 3636       357.0       45.5          22.0         28.5      0.0 2015-2016
## 3637       359.0       45.4          22.0         51.1      0.0 2015-2016
## 3638       386.6       49.8          28.0          3.6      0.0 2015-2016
## 3639       382.6       45.7          24.0          4.2      0.0 2015-2016
## 3640       373.3       52.0          29.0         28.4      0.0 2015-2016
## 3641       371.2       49.9          26.0         54.0      0.0 2015-2016
## 3642       355.5       49.0          27.0          3.5      0.0 2015-2016
## 3643       387.0       45.5          25.0          3.7      0.0 2015-2016
## 3644       398.8       46.1          24.0          3.8      0.0 2015-2016
## 3645       393.5       42.3          21.0          3.5      0.0 2015-2016
## 3646       382.2       53.1          32.0         28.1      0.0 2015-2016
## 3647       392.1       52.8          32.0         81.0      0.0 2015-2016
## 3648       390.7       50.9          28.0         56.4      0.0 2015-2016
## 3649       396.4       44.4          25.0          3.7      0.0 2015-2016
## 3650       565.8       42.6          23.0          0.0   2405.3 2016-2017
## 3651       561.6       45.3          23.0          0.0   2389.7 2016-2017
## 3652       577.3       46.7          26.0         60.0   2452.5 2016-2017
## 3653       577.4       47.2          28.0          0.0   2459.1 2016-2017
## 3654       563.3       54.2          32.0         60.0   2423.7 2016-2017
## 3655       573.3       52.8          32.0          0.0   2465.9 2016-2017
## 3656       582.6       47.6          26.0         60.0   2473.8 2016-2017
## 3657       581.0       53.9          32.0         60.0   2489.4 2016-2017
## 3658       574.7       48.5          29.0         60.0   2438.0 2016-2017
## 3659       588.5       48.1          26.0         60.0   2483.5 2016-2017
## 3660       574.5       49.4          28.0         60.0   2452.2 2016-2017
## 3661       571.2       46.4          25.0         60.0   2441.7 2016-2017
## 3662       587.5       42.1          20.0          0.0   2487.6 2016-2017
## 3663       586.0       45.1          25.0          0.0   2472.1 2016-2017
## 3664       568.0       49.4          29.0        120.0   2428.6 2016-2017
## 3665       593.7       47.8          27.0          0.0   2533.9 2016-2017
## 3666       596.4       50.2          27.0          0.0   2529.4 2016-2017
## 3667       588.0       50.4          29.0         60.0   2510.6 2016-2017
## 3668       589.9       54.8          33.0         60.0   2503.2 2016-2017
## 3669       589.2       47.7          27.0         60.0   2502.3 2016-2017
## 3670       590.0       45.7          25.0         60.0   2460.6 2016-2017
## 3671       592.8       59.9          40.0        120.0   2540.5 2016-2017
## 3672       585.9       54.3          33.0         60.0   2476.3 2016-2017
## 3673       575.8       45.9          28.0         60.0   2427.6 2016-2017
## 3674       593.8       49.6          27.0         60.0   2525.3 2016-2017
## 3675       585.2       45.5          24.0          0.0   2488.1 2016-2017
## 3676       609.4       54.4          35.0          0.0   2584.0 2016-2017
## 3677       595.1       46.7          24.0          0.0   2552.8 2016-2017
## 3678       603.2       49.4          28.0          0.0   2546.6 2016-2017
## 3679       561.4       54.9          35.0        180.0   2472.0 2016-2017
## 3680       601.5       50.2          28.0          0.0   2572.9 2016-2017
## 3681       583.1       53.0          32.0        180.0   2464.8 2016-2017
## 3682       605.4       44.7          25.0          0.0   2562.2 2016-2017
## 3683       583.6       60.5          40.0        120.0   2477.8 2016-2017
## 3684       630.6       55.9          32.0          0.0   2671.6 2016-2017
## 3685       606.6       46.9          25.0         60.0   2542.5 2016-2017
## 3686       586.6       45.9          26.0          0.0   2493.8 2016-2017
## 3687       588.9       46.6          25.0         60.0   2490.7 2016-2017
## 3688       589.6       45.3          25.0        120.0   2483.6 2016-2017
## 3689       601.4       56.2          33.0         60.0   2540.2 2016-2017
## 3690       591.9       47.6          24.0         60.0   2544.2 2016-2017
## 3691       591.5       50.3          29.0         60.0   2508.2 2016-2017
## 3692       593.8       52.8          32.0         60.0   2543.3 2016-2017
## 3693       593.2       59.7          37.0         60.0   2552.9 2016-2017
## 3694       591.3       44.9          24.0          0.0   2510.8 2016-2017
## 3695       611.4       50.1          31.0         60.0   2608.9 2016-2017
## 3696       607.7       50.3          27.0          0.0   2556.7 2016-2017
## 3697       600.8       48.3          25.0         60.0   2566.2 2016-2017
## 3698       604.4       54.9          33.0         60.0   2558.9 2016-2017
## 3699       607.9       48.2          26.0          0.0   2561.7 2016-2017
## 3700       609.9       59.1          34.0        120.0   2573.6 2016-2017
## 3701       617.0       48.5          26.0         60.0   2623.7 2016-2017
## 3702       587.1       47.8          26.0         60.0   2652.5 2016-2017
## 3703       604.9       52.6          30.0          0.0   2572.5 2016-2017
## 3704       626.4       56.3          33.0         60.0   2639.5 2016-2017
## 3705       611.2       49.3          28.0         60.0   2578.3 2016-2017
## 3706       593.9       44.3          23.0         60.0   2543.1 2016-2017
## 3707       577.1       54.2          33.0        120.0   2507.2 2016-2017
## 3708       580.0       49.3          27.0          0.0   2509.4 2016-2017
## 3709       621.9       50.3          29.0          0.0   2655.6 2016-2017
## 3710       593.0       50.6          29.0         60.0   2507.5 2016-2017
## 3711       611.3       61.3          39.0         60.0   2610.4 2016-2017
## 3712       568.5       68.4          47.0        180.0   2465.3 2016-2017
## 3713       599.4       55.6          35.0        180.0   2562.5 2016-2017
## 3714       630.6       54.5          31.0        120.0   2666.5 2016-2017
## 3715       618.6       60.7          38.0         60.0   2615.8 2016-2017
## 3716       584.4       49.3          29.0        120.0   2518.9 2016-2017
## 3717       611.6       49.7          30.0         60.0   2566.0 2016-2017
## 3718       604.8       53.8          32.0         60.0   2568.7 2016-2017
## 3719       585.0       54.5          30.0        120.0   2517.1 2016-2017
## 3720       583.8       51.4          28.0          0.0   2510.8 2016-2017
## 3721       600.0       49.0          27.0         60.0   2544.4 2016-2017
## 3722       620.2       48.2          24.0          0.0   2614.8 2016-2017
## 3723       609.4       46.6          26.0         60.0   2553.4 2016-2017
## 3724       590.7       47.6          27.0         60.0   2489.9 2016-2017
## 3725       613.0       72.6          51.0        120.0   2608.1 2016-2017
## 3726       635.8       48.9          25.0          0.0   2649.0 2016-2017
## 3727       654.2       53.3          30.0          0.0   2765.4 2016-2017
## 3728       620.6       41.5          20.0         60.0   2620.5 2016-2017
## 3729       624.6       46.6          25.0         60.0   2614.1 2016-2017
## 3730       600.6       52.2          30.0        120.0   2529.0 2016-2017
## 3731       604.1       48.1          26.0         60.0   2537.6 2016-2017
## 3732       599.1       47.1          24.0        120.0   2483.6 2016-2017
## 3733       599.9       49.2          25.0        120.0   2554.0 2016-2017
## 3734       581.2       49.6          28.0        120.0   2476.0 2016-2017
## 3735       594.3       48.9          28.0        120.0   2514.1 2016-2017
## 3736       622.1       43.5          23.0         60.0   2543.6 2016-2017
## 3737       646.7       56.3          32.0          0.0   2723.5 2016-2017
## 3738       615.0       55.4          30.0        120.0   2580.5 2016-2017
## 3739       643.6       46.5          24.0          0.0   2666.4 2016-2017
## 3740       604.1       51.0          27.0          0.0   2545.0 2016-2017
## 3741       607.2       68.4          46.0        120.0   2598.1 2016-2017
## 3742       637.2       53.7          30.0         60.0   2698.2 2016-2017
## 3743       629.2       55.8          33.0         60.0   2645.4 2016-2017
## 3744       616.7       52.0          30.0         60.0   2610.2 2016-2017
## 3745       608.2       46.2          24.0        120.0   2524.3 2016-2017
## 3746       626.0       54.1          32.0          0.0   2690.1 2016-2017
## 3747       633.9       43.6          21.0        180.0   2642.6 2016-2017
## 3748       625.7       56.8          32.0         60.0   2645.2 2016-2017
## 3749       618.3       56.3          32.0        120.0   2601.2 2016-2017
## 3750       662.4       55.5          31.0         60.0   2787.3 2016-2017
## 3751       666.9       53.0          30.0         60.0   2718.1 2016-2017
## 3752       604.4       53.1          31.0        180.0   2574.3 2016-2017
## 3753       658.3       56.4          31.0        120.0   2755.6 2016-2017
## 3754       617.5       63.5          38.0        120.0   2641.8 2016-2017
## 3755       397.3       44.8          28.0          9.1      0.0 2016-2017
## 3756       388.2       43.4          26.0          9.7      0.0 2016-2017
## 3757       393.0       45.6          26.0          7.8      0.0 2016-2017
## 3758       387.5       48.9          29.0         29.7      0.0 2016-2017
## 3759       381.4       41.8          25.0         47.4      0.0 2016-2017
## 3760       387.9       45.7          28.0         29.1      0.0 2016-2017
## 3761       393.1       51.8          32.0          8.7      0.0 2016-2017
## 3762       407.2       51.4          33.0         29.2      0.0 2016-2017
## 3763       409.6       42.3          24.0          7.7      0.0 2016-2017
## 3764       388.7       44.6          27.0         48.6      0.0 2016-2017
## 3765       414.8       43.2          22.0         28.8      0.0 2016-2017
## 3766       411.9       43.7          26.0          7.0      0.0 2016-2017
## 3767       413.4       46.0          27.0         29.0      0.0 2016-2017
## 3768       403.1       43.8          23.0         52.2      0.0 2016-2017
## 3769       404.3       42.5          25.0         27.6      0.0 2016-2017
## 3770       419.7       46.6          26.0         29.7      0.0 2016-2017
## 3771       419.1       50.4          31.0         28.9      0.0 2016-2017
## 3772       420.5       45.0          23.0          8.0      0.0 2016-2017
## 3773       405.3       49.5          30.0         49.5      0.0 2016-2017
## 3774       418.1       46.7          26.0         50.2      0.0 2016-2017
## 3775       422.0       44.9          25.0          7.9      0.0 2016-2017
## 3776       457.5       43.7          23.0          8.1      0.0 2016-2017
## 3777       418.6       41.7          24.0          7.7      0.0 2016-2017
## 3778       420.3       45.9          26.0          7.9      0.0 2016-2017
## 3779       433.4       49.5          31.0         29.5      0.0 2016-2017
## 3780       409.0       54.1          33.0         71.4      0.0 2016-2017
## 3781       416.8       48.3          29.0         29.1      0.0 2016-2017
## 3782       423.0       52.8          33.0         50.3      0.0 2016-2017
## 3783       433.4       45.3          24.0         30.8      0.0 2016-2017
## 3784       435.1       52.6          30.0         29.9      0.0 2016-2017
## 3785       440.0       51.9          30.0          4.1      0.0 2016-2017
## 3786       440.7       45.0          22.0          4.7      0.0 2016-2017
## 3787       436.4       47.1          25.0         26.2      0.0 2016-2017
## 3788       451.1       48.0          23.0          4.8      0.0 2016-2017
## 3789       446.6       45.8          22.0         26.3      0.0 2016-2017
## 3790       450.7       49.2          26.0          4.8      0.0 2016-2017
## 3791       444.9       47.0          23.0         25.1      0.0 2016-2017
## 3792       446.5       45.3          23.0         25.3      0.0 2016-2017
## 3793       446.8       48.6          24.0          5.2      0.0 2016-2017
## 3794       445.8       51.0          27.0          4.4      0.0 2016-2017
## 3795       461.3       50.2          26.0          4.7      0.0 2016-2017
## 3796       434.4       51.8          28.0         47.6      0.0 2016-2017
## 3797       452.4       51.6          27.0          4.7      0.0 2016-2017
## 3798       447.2       49.3          25.0         26.3      0.0 2016-2017
## 3799       461.1       47.7          25.0          4.6      0.0 2016-2017
## 3800       460.3       51.3          26.0          4.8      0.0 2016-2017
## 3801       440.5       53.1          30.0         47.3      0.0 2016-2017
## 3802       452.4       47.1          26.0         24.6      0.0 2016-2017
## 3803       450.4       51.9          29.0         49.9      0.0 2016-2017
## 3804       456.4       50.5          28.0          4.3      0.0 2016-2017
## 3805       443.8       48.4          25.0         48.7      0.0 2016-2017
## 3806       447.1       44.7          20.0         44.7      0.0 2016-2017
## 3807       478.1       49.5          26.0          4.7      0.0 2016-2017
## 3808       452.0       51.3          28.0         47.5      0.0 2016-2017
## 3809       454.2       49.3          25.0         26.2      0.0 2016-2017
## 3810       457.8       53.8          29.0         26.4      0.0 2016-2017
## 3811       454.5       45.0          24.0          4.4      0.0 2016-2017
## 3812       453.6       49.2          24.0         27.9      0.0 2016-2017
## 3813       475.9       52.2          27.0          5.3      0.0 2016-2017
## 3814       450.0       50.8          26.0         47.0      0.0 2016-2017
## 3815       468.7       51.6          27.0         25.8      0.0 2016-2017
## 3816       468.3       49.3          25.0          4.9      0.0 2016-2017
## 3817       464.3       49.3          24.0         28.1      0.0 2016-2017
## 3818       444.6       47.5          22.0         48.9      0.0 2016-2017
## 3819       455.1       44.5          21.0         26.0      0.0 2016-2017
## 3820       447.3       52.2          24.0         27.2      0.0 2016-2017
## 3821       444.2       49.5          26.0         70.7      0.0 2016-2017
## 3822       467.8       49.6          25.0          4.5      0.0 2016-2017
## 3823       456.5       46.9          23.0          5.1      0.0 2016-2017
## 3824       455.6       51.8          28.0         46.3      0.0 2016-2017
## 3825       451.1       49.1          26.0         69.3      0.0 2016-2017
## 3826       448.3       52.5          27.0         26.8      0.0 2016-2017
## 3827       437.4       47.2          25.0         71.1      0.0 2016-2017
## 3828       457.2       55.0          31.0         26.8      0.0 2016-2017
## 3829       456.3       49.8          25.0         49.1      0.0 2016-2017
## 3830       460.7       52.1          27.0         29.2      0.0 2016-2017
## 3831       468.9       53.9          29.0         47.9      0.0 2016-2017
## 3832       467.9       55.0          27.0         28.1      0.0 2016-2017
## 3833       457.0       45.5          23.0         49.4      0.0 2016-2017
## 3834       460.6       51.9          26.0         27.2      0.0 2016-2017
## 3835       460.9       46.9          24.0         25.9      0.0 2016-2017
## 3836       453.6       47.6          23.0         27.2      0.0 2016-2017
## 3837       468.2       55.1          29.0         28.1      0.0 2016-2017
## 3838       471.1       50.1          24.0          5.0      0.0 2016-2017
## 3839       460.8       56.4          32.0         50.3      0.0 2016-2017
## 3840       464.0       50.2          28.0         24.8      0.0 2016-2017
## 3841       448.4       55.3          31.0         25.9      0.0 2016-2017
## 3842       465.2       52.9          28.0          5.8      0.0 2016-2017
## 3843       451.6       51.1          27.0         49.7      0.0 2016-2017
## 3844       473.3       51.7          27.0          5.2      0.0 2016-2017
## 3845       458.5       55.6          31.0         25.6      0.0 2016-2017
## 3846       474.7       56.3          31.0          4.9      0.0 2016-2017
## 3847       469.5       50.5          24.0         29.4      0.0 2016-2017
## 3848       472.9       44.9          20.0         27.9      0.0 2016-2017
## 3849       455.4       53.1          27.0         77.7      0.0 2016-2017
## 3850       467.4       49.5          24.0         28.0      0.0 2016-2017
## 3851       474.4       50.6          24.0         49.5      0.0 2016-2017
## 3852       474.0       49.7          23.0         51.9      0.0 2016-2017
## 3853       466.5       48.8          24.0         28.7      0.0 2016-2017
## 3854       467.3       51.7          28.0         29.2      0.0 2016-2017
## 3855       477.4       57.8          31.0         28.4      0.0 2016-2017
## 3856       484.8       51.1          26.0          4.9      0.0 2016-2017
## 3857       482.4       54.4          29.0         52.7      0.0 2016-2017
## 3858       477.3       49.6          26.0         26.6      0.0 2016-2017
## 3859       462.4       56.5          32.0         71.9      0.0 2016-2017
## 3860       465.4       51.2          26.0         28.0      0.0 2016-2017
## 3861       451.0       47.9          24.0         26.8      0.0 2016-2017
## 3862       469.3       49.4          25.0         54.7      0.0 2016-2017
## 3863       477.4       47.5          21.0         28.1      0.0 2016-2017
## 3864       478.0       52.5          28.0          4.8      0.0 2016-2017
## 3865       478.1       56.2          29.0         30.4      0.0 2016-2017
## 3866       463.4       68.4          43.0         52.5      0.0 2016-2017
## 3867       456.3       57.5          31.0         74.3      0.0 2016-2017
## 3868       478.5       54.7          30.0         51.0      0.0 2016-2017
## 3869       471.0       47.7          22.0         27.4      0.0 2016-2017
## 3870       492.5       51.9          26.0         29.7      0.0 2016-2017
## 3871       495.0       49.3          24.0         29.4      0.0 2016-2017
## 3872       492.4       55.3          28.0         60.6      0.0 2016-2017
## 3873       489.4       57.5          30.0         30.0      0.0 2016-2017
## 3874       501.4       58.4          31.0         31.7      0.0 2016-2017
## 3875       505.2       69.4          46.0         27.9      0.0 2016-2017
## 3876       454.2       59.0          32.0        128.4      0.0 2016-2017
## 3877       471.1      115.3          90.0         71.4      0.0 2016-2017
## 3878       514.5       62.5          36.0         29.7      0.0 2016-2017
## 3879       479.0       61.9          35.0         78.7      0.0 2016-2017
## 3880       501.0       56.0          28.0         32.8      0.0 2016-2017
## 3881       497.0       54.8          29.0         30.6      0.0 2016-2017
## 3882       498.3       54.8          28.0         29.6      0.0 2016-2017
## 3883       492.6       53.8          27.0         56.4      0.0 2016-2017
## 3884       494.7       63.3          37.0         54.8      0.0 2016-2017
## 3885       510.7       57.1          30.0         85.6      0.0 2016-2017
## 3886       508.5       69.0          41.0        106.1      0.0 2016-2017
## 3887       553.7       48.4          24.0          0.0   2346.4 2016-2017
## 3888       552.0       44.5          22.0          0.0   2352.8 2016-2017
## 3889       533.7       45.5          21.0          0.0   2266.2 2016-2017
## 3890       550.5       50.1          27.0          0.0   2335.5 2016-2017
## 3891       547.0       50.4          26.0          0.0   2331.9 2016-2017
## 3892       555.9       55.4          31.0          0.0   2398.7 2016-2017
## 3893       538.6       46.0          23.0          0.0   2294.0 2016-2017
## 3894       544.1       45.0          21.0         60.0   2309.5 2016-2017
## 3895       557.6       44.6          21.0          0.0   2365.6 2016-2017
## 3896       539.8       61.4          37.0         60.0   2366.5 2016-2017
## 3897       563.6       49.5          24.0          0.0   2372.5 2016-2017
## 3898       552.0       55.7          31.0         60.0   2324.9 2016-2017
## 3899       544.0       49.5          25.0          0.0   2338.3 2016-2017
## 3900       537.4       47.1          24.0          0.0   2312.4 2016-2017
## 3901       557.2       57.7          32.0          0.0   2403.4 2016-2017
## 3902       554.7       53.6          29.0         60.0   2349.0 2016-2017
## 3903       538.4       45.8          22.0         60.0   2320.2 2016-2017
## 3904       542.7       51.2          28.0         60.0   2327.6 2016-2017
## 3905       543.4       56.0          33.0          0.0   2330.7 2016-2017
## 3906       546.9       48.0          24.0         60.0   2322.1 2016-2017
## 3907       543.0       48.0          26.0         60.0   2336.2 2016-2017
## 3908       563.4       49.5          28.0          0.0   2389.4 2016-2017
## 3909       554.8       53.4          29.0         60.0   2391.1 2016-2017
## 3910       550.7       52.2          27.0          0.0   2352.6 2016-2017
## 3911       549.6       66.0          41.0         60.0   2363.4 2016-2017
## 3912       545.8       51.9          28.0         60.0   2357.5 2016-2017
## 3913       559.0       49.8          21.0          0.0   2349.4 2016-2017
## 3914       586.8       56.5          31.0          0.0   2483.9 2016-2017
## 3915       585.8       49.7          25.0          0.0   2482.9 2016-2017
## 3916       576.8       57.8          32.0          0.0   2480.8 2016-2017
## 3917       562.3       51.1          25.0         60.0   2405.7 2016-2017
## 3918       578.6       51.9          26.0          0.0   2417.3 2016-2017
## 3919       571.1       48.3          22.0         60.0   2397.6 2016-2017
## 3920       560.1       45.6          22.0          0.0   2362.6 2016-2017
## 3921       554.2       50.1          26.0          0.0   2353.4 2016-2017
## 3922       552.9       51.9          26.0        120.0   2356.2 2016-2017
## 3923       553.1       55.0          30.0          0.0   2411.2 2016-2017
## 3924       560.9       53.6          28.0         60.0   2417.7 2016-2017
## 3925       567.9       52.2          26.0          0.0   2418.0 2016-2017
## 3926       570.0       55.2          29.0         60.0   2412.8 2016-2017
## 3927       549.2       50.4          24.0         60.0   2365.7 2016-2017
## 3928       597.9       57.4          30.0         60.0   2521.4 2016-2017
## 3929       585.1       53.2          27.0         60.0   2460.0 2016-2017
## 3930       574.3       51.4          26.0         60.0   2423.0 2016-2017
## 3931       578.6       51.6          26.0         60.0   2470.6 2016-2017
## 3932       565.4       51.3          26.0          0.0   2420.9 2016-2017
## 3933       573.3       46.9          22.0         60.0   2376.5 2016-2017
## 3934       566.2       55.6          30.0         60.0   2441.7 2016-2017
## 3935       571.3       54.1          27.0         60.0   2451.9 2016-2017
## 3936       584.1       49.2          26.0         60.0   2456.7 2016-2017
## 3937       562.4       51.5          25.0          0.0   2397.7 2016-2017
## 3938       559.8       54.5          28.0         60.0   2415.1 2016-2017
## 3939       592.4       50.4          24.0          0.0   2512.0 2016-2017
## 3940       555.0       49.2          24.0         60.0   2391.4 2016-2017
## 3941       557.0       47.5          21.0         60.0   2421.6 2016-2017
## 3942       542.7       48.0          23.0        180.0   2327.0 2016-2017
## 3943       576.9       57.4          33.0         60.0   2489.2 2016-2017
## 3944       577.9       49.0          24.0          0.0   2439.1 2016-2017
## 3945       578.2       50.8          25.0          0.0   2444.3 2016-2017
## 3946       594.5       55.9          29.0         60.0   2504.1 2016-2017
## 3947       571.6       72.9          47.0        120.0   2469.2 2016-2017
## 3948       585.2       54.0          29.0        120.0   2491.2 2016-2017
## 3949       585.8       56.3          27.0         60.0   2512.6 2016-2017
## 3950       577.3       65.8          40.0        120.0   2436.0 2016-2017
## 3951       583.7       55.5          28.0          0.0   2455.6 2016-2017
## 3952       609.4       56.8          29.0         60.0   2561.2 2016-2017
## 3953       564.8       51.1          26.0         60.0   2442.8 2016-2017
## 3954       585.3       51.1          25.0          0.0   2479.9 2016-2017
## 3955       619.8       56.6          29.0          0.0   2601.6 2016-2017
## 3956       579.1       58.6          32.0        180.0   2451.2 2016-2017
## 3957       607.0       54.9          26.0         60.0   2543.4 2016-2017
## 3958       555.6       47.5          22.0         60.0   2360.7 2016-2017
## 3959       583.6       57.9          31.0         60.0   2483.7 2016-2017
## 3960       583.1       52.5          24.0          0.0   2498.9 2016-2017
## 3961       616.0       50.2          26.0         60.0   2577.0 2016-2017
## 3962       594.8       50.3          27.0        120.0   2491.3 2016-2017
## 3963       597.6       58.7          33.0         60.0   2548.8 2016-2017
## 3964       602.2       55.7          31.0         60.0   2553.1 2016-2017
## 3965       564.6       58.3          30.0        120.0   2476.4 2016-2017
## 3966       569.4       51.8          28.0         60.0   2412.9 2016-2017
## 3967       579.3       55.5          30.0        180.0   2474.2 2016-2017
## 3968       620.5       55.9          27.0         60.0   2588.1 2016-2017
## 3969       612.1       61.8          34.0        120.0   2662.8 2016-2017
## 3970       578.4       56.5          28.0        180.0   2451.3 2016-2017
## 3971       589.1       55.9          29.0        120.0   2513.0 2016-2017
## 3972       607.8       57.9          31.0        120.0   2551.1 2016-2017
## 3973       592.1       56.4          30.0         60.0   2518.3 2016-2017
## 3974       598.9       55.8          27.0        120.0   2451.4 2016-2017
## 3975       601.9       55.3          29.0         60.0   2598.6 2016-2017
## 3976       597.4       56.0          30.0         60.0   2547.4 2016-2017
## 3977       628.3       55.8          27.0         60.0   2595.2 2016-2017
## 3978       616.6       53.9          26.0         60.0   2619.1 2016-2017
## 3979       619.0       60.0          32.0        120.0   2595.7 2016-2017
## 3980       629.0       55.8          27.0         60.0   2637.7 2016-2017
## 3981       625.2       61.3          33.0         60.0   2672.1 2016-2017
## 3982       568.2       69.8          40.0        240.0   2480.6 2016-2017
## 3983       613.2       71.7          45.0        180.0   2607.6 2016-2017
## 3984       634.2       48.1          22.0        180.0   2645.7 2016-2017
## 3985       655.9       59.0          30.0         60.0   2801.1 2016-2017
## 3986       597.1       60.6          35.0        180.0   2595.5 2016-2017
## 3987       389.3       45.6          26.0          4.5      0.0 2016-2017
## 3988       387.9       46.0          25.0         26.2      0.0 2016-2017
## 3989       394.4       41.6          20.0          4.9      0.0 2016-2017
## 3990       397.1       41.8          19.0          4.8      0.0 2016-2017
## 3991       388.9       48.7          30.0         47.9      0.0 2016-2017
## 3992       401.6       47.8          25.0          5.2      0.0 2016-2017
## 3993       388.4       45.6          27.0         44.8      0.0 2016-2017
## 3994       396.0       46.7          24.0          4.8      0.0 2016-2017
## 3995       393.6       46.5          25.0          4.7      0.0 2016-2017
## 3996       390.1       47.2          24.0         47.1      0.0 2016-2017
## 3997       393.9       45.7          23.0          4.8      0.0 2016-2017
## 3998       391.8       48.8          28.0         28.0      0.0 2016-2017
## 3999       395.7       50.7          27.0         25.5      0.0 2016-2017
## 4000       399.3       47.3          25.0         25.3      0.0 2016-2017
## 4001       394.1       42.3          20.0          4.6      0.0 2016-2017
## 4002       401.4       44.4          22.0         25.8      0.0 2016-2017
## 4003       399.7       48.9          25.0          4.8      0.0 2016-2017
## 4004       399.9       49.2          25.0          4.8      0.0 2016-2017
## 4005       388.2       44.9          22.0         24.8      0.0 2016-2017
## 4006       397.3       50.7          27.0         45.2      0.0 2016-2017
## 4007       394.6       49.5          27.0          4.6      0.0 2016-2017
## 4008       408.5       47.2          24.0          4.5      0.0 2016-2017
## 4009       414.6       46.0          24.0          4.6      0.0 2016-2017
## 4010       403.3       44.9          25.0          4.4      0.0 2016-2017
## 4011       406.0       43.5          20.0         26.5      0.0 2016-2017
## 4012       405.6       42.1          21.0         26.5      0.0 2016-2017
## 4013       396.6       47.1          23.0         49.6      0.0 2016-2017
## 4014       410.0       46.6          21.0          5.1      0.0 2016-2017
## 4015       418.9       46.6          26.0          4.3      0.0 2016-2017
## 4016       420.7       50.7          27.0         27.0      0.0 2016-2017
## 4017       313.4       43.1          21.0         27.3      0.0 2016-2017
## 4018       319.8       44.2          21.0          4.9      0.0 2016-2017
## 4019       320.9       50.2          29.0         25.2      0.0 2016-2017
## 4020       315.5       46.5          22.0          4.6      0.0 2016-2017
## 4021       318.9       47.3          24.0         26.0      0.0 2016-2017
## 4022       323.9       49.1          25.0          5.1      0.0 2016-2017
## 4023       322.4       52.4          28.0         26.3      0.0 2016-2017
## 4024       321.4       44.2          21.0         25.7      0.0 2016-2017
## 4025       317.9       50.4          26.0         23.6      0.0 2016-2017
## 4026       320.9       46.7          24.0         24.0      0.0 2016-2017
## 4027       320.6       50.3          28.0          4.4      0.0 2016-2017
## 4028       322.9       44.2          22.0         25.6      0.0 2016-2017
## 4029       326.3       50.4          27.0          4.8      0.0 2016-2017
## 4030       325.1       44.6          21.0          4.6      0.0 2016-2017
## 4031       323.6       46.3          24.0          4.4      0.0 2016-2017
## 4032       323.4       49.6          25.0         47.6      0.0 2016-2017
## 4033       321.6       53.0          33.0          4.4      0.0 2016-2017
## 4034       321.3       49.5          26.0          4.4      0.0 2016-2017
## 4035       321.3       47.9          26.0         45.7      0.0 2016-2017
## 4036       325.3       46.2          24.0         26.8      0.0 2016-2017
## 4037       318.6       46.3          24.0         25.7      0.0 2016-2017
## 4038       323.3       43.8          23.0          4.8      0.0 2016-2017
## 4039       323.5       51.2          28.0          4.6      0.0 2016-2017
## 4040       329.3       49.2          27.0           NA      0.0 2016-2017
## 4041       321.8       43.2          27.0          4.6      0.0 2016-2017
## 4042       332.0       50.1          24.0          5.3      0.0 2016-2017
## 4043       327.4       60.3          38.0         44.4      0.0 2016-2017
## 4044       319.4       47.0          23.0         45.0      0.0 2016-2017
## 4045       322.7       51.9          30.0         26.4      0.0 2016-2017
## 4046       322.9       49.6          26.0         64.6      0.0 2016-2017
## 4047       328.6       44.9          20.0          4.9      0.0 2016-2017
## 4048       330.2       51.8          26.0         25.1      0.0 2016-2017
## 4049       326.9       49.7          26.0         26.7      0.0 2016-2017
## 4050       337.4       55.1          31.0          4.7      0.0 2016-2017
## 4051       336.3       55.3          32.0         26.5      0.0 2016-2017
## 4052       327.7       54.5          31.0         46.2      0.0 2016-2017
## 4053       321.9       48.3          24.0         45.7      0.0 2016-2017
## 4054       326.9       46.6          22.0         26.1      0.0 2016-2017
## 4055       334.0       45.3          23.0          5.2      0.0 2016-2017
## 4056       319.8       52.7          27.0         29.1      0.0 2016-2017
## 4057       330.1       49.8          25.0         45.6      0.0 2016-2017
## 4058       339.9       52.1          30.0         27.3      0.0 2016-2017
## 4059       336.3       52.4          26.0         28.4      0.0 2016-2017
## 4060       325.2       48.0          25.0         26.5      0.0 2016-2017
## 4061       332.6       55.5          31.0         28.6      0.0 2016-2017
## 4062       330.8       48.4          25.0          4.5      0.0 2016-2017
## 4063       333.4       49.9          25.0         26.2      0.0 2016-2017
## 4064       345.9       48.5          24.0          5.0      0.0 2016-2017
## 4065       339.3       46.2          24.0         29.4      0.0 2016-2017
## 4066       332.6       48.7          24.0         26.5      0.0 2016-2017
## 4067       339.7       48.9          23.0         27.6      0.0 2016-2017
## 4068       332.1       50.9          27.0         25.1      0.0 2016-2017
## 4069       334.7       55.3          33.0          5.2      0.0 2016-2017
## 4070       331.0       46.9          24.0         48.3      0.0 2016-2017
## 4071       337.4       42.9          21.0         26.1      0.0 2016-2017
## 4072       339.7       52.6          30.0         26.2      0.0 2016-2017
## 4073       341.6       51.8          29.0         27.0      0.0 2016-2017
## 4074       412.3       41.4          21.7         26.6      0.0 2016-2017
## 4075       422.5       41.6          21.0          6.7      0.0 2016-2017
## 4076       428.2       43.0          24.0          7.0      0.0 2016-2017
## 4077       430.5       40.2          19.3          7.5      0.0 2016-2017
## 4078       427.6       43.0          25.2          6.7      0.0 2016-2017
## 4079       426.1       40.8          21.5         27.7      0.0 2016-2017
## 4080       420.7       45.9          27.6         25.9      0.0 2016-2017
## 4081       424.8       39.2          21.5          6.6      0.0 2016-2017
## 4082       423.0       44.5          24.6          7.1      0.0 2016-2017
## 4083       445.1       39.4          18.8          6.8      0.0 2016-2017
## 4084       424.7       44.9          25.5          6.9      0.0 2016-2017
## 4085       433.5       43.2          25.0          7.2      0.0 2016-2017
## 4086       441.1       42.0          21.0          7.6      0.0 2016-2017
## 4087       442.4       48.7          32.5          6.6      0.0 2016-2017
## 4088       427.2       47.3          27.8          6.5      0.0 2016-2017
## 4089       438.5       47.1          27.1          7.0      0.0 2016-2017
## 4090       435.3       44.8          26.1         26.2      0.0 2016-2017
## 4091       439.2       41.4          21.6         28.8      0.0 2016-2017
## 4092       434.2       46.1          28.1          6.4      0.0 2016-2017
## 4093       437.4       46.8          26.5         28.9      0.0 2016-2017
## 4094       439.7       39.1          19.2          7.1      0.0 2016-2017
## 4095       430.5       46.2          25.7         29.0      0.0 2016-2017
## 4096       428.5       45.3          25.3         50.3      0.0 2016-2017
## 4097       439.7       41.2          21.9          6.7      0.0 2016-2017
## 4098       426.1       48.7          63.5         27.2      0.0 2016-2017
## 4099       439.6       42.8          22.6         27.4      0.0 2016-2017
## 4100       436.5       42.3          24.2          7.5      0.0 2016-2017
## 4101       445.5       43.6          25.3          6.6      0.0 2016-2017
## 4102       430.6       43.1          23.6         47.9      0.0 2016-2017
## 4103       421.5       46.2          28.9         46.5      0.0 2016-2017
## 4104       445.5       49.6          28.7          7.0      0.0 2016-2017
## 4105       432.1       46.9          26.1         46.6      0.0 2016-2017
## 4106       430.4       50.2          30.5         48.7      0.0 2016-2017
## 4107       437.6       47.3          28.5          7.0      0.0 2016-2017
## 4108       435.3       46.2          26.4          7.0      0.0 2016-2017
## 4109       429.5       49.0          29.7         48.7      0.0 2016-2017
## 4110       433.6       50.7          33.4          6.8      0.0 2016-2017
## 4111       451.2       44.4          24.2          7.7      0.0 2016-2017
## 4112       445.9       51.8          30.9         28.0      0.0 2016-2017
## 4113       443.6       51.8          33.1          7.5      0.0 2016-2017
## 4114       443.2       48.1          26.3          7.1      0.0 2016-2017
## 4115       450.1       48.0          29.7         29.5      0.0 2016-2017
## 4116       434.1       43.7          23.2         27.6      0.0 2016-2017
## 4117       446.2       45.6          25.9         29.6      0.0 2016-2017
## 4118       449.7       48.8          29.6          6.9      0.0 2016-2017
## 4119       462.2       46.6          26.5          6.8      0.0 2016-2017
## 4120       438.0       44.6          26.0         51.4      0.0 2016-2017
## 4121       431.6       44.1          25.0         49.8      0.0 2016-2017
## 4122       449.6       50.9          29.3         28.0      0.0 2016-2017
## 4123       459.4       48.4          26.1          7.5      0.0 2016-2017
## 4124       440.8       47.8          26.9         30.1      0.0 2016-2017
## 4125       462.7       41.3          24.7          7.6      0.0 2016-2017
## 4126       456.5       43.6          21.5          8.5      0.0 2016-2017
## 4127       453.1       53.3          36.5         28.3      0.0 2016-2017
## 4128       436.4       46.0          22.4         73.6      0.0 2016-2017
## 4129       447.4       48.2          27.2         29.1      0.0 2016-2017
## 4130       446.3       48.8          29.7         53.7      0.0 2016-2017
## 4131       445.0       52.3          31.9         48.3      0.0 2016-2017
## 4132       447.3       55.4          37.2         50.9      0.0 2016-2017
## 4133       445.2       43.3          23.5         51.9      0.0 2016-2017
## 4134       442.0       43.5          25.4         69.5      0.0 2016-2017
## 4135       459.8       50.3          29.9         29.8      0.0 2016-2017
## 4136       449.5       48.9          29.0         29.7      0.0 2016-2017
## 4137       438.4       49.2          27.7         52.2      0.0 2016-2017
## 4138       449.6       44.6          25.1         29.1      0.0 2016-2017
## 4139       450.1       54.6          32.4         51.8      0.0 2016-2017
## 4140       451.7       47.1          26.9         29.6      0.0 2016-2017
## 4141       436.8       46.8          25.0         73.0      0.0 2016-2017
## 4142       454.9       45.2          24.6          7.3      0.0 2016-2017
## 4143       466.1       38.9          21.2         28.9      0.0 2016-2017
## 4144       452.3       46.9          24.7         54.2      0.0 2016-2017
## 4145       438.6       43.9          25.2         28.8      0.0 2016-2017
## 4146       441.8       46.4          25.5         28.0      0.0 2016-2017
## 4147       464.6       46.2          25.4          8.0      0.0 2016-2017
## 4148       465.4       48.3          27.8          7.5      0.0 2016-2017
## 4149       444.1       44.5          24.2         29.2      0.0 2016-2017
## 4150       451.9       47.7          24.5         71.3      0.0 2016-2017
## 4151       457.5       37.8          17.5          7.1      0.0 2016-2017
## 4152       455.7       54.0          33.2         52.1      0.0 2016-2017
## 4153       462.2       53.2          32.1         29.9      0.0 2016-2017
## 4154       457.3       51.1          29.6         29.6      0.0 2016-2017
## 4155       477.8       47.5          25.2          7.5      0.0 2016-2017
## 4156       450.7       52.3          32.8         74.5      0.0 2016-2017
## 4157       459.3       50.0          30.8         29.7      0.0 2016-2017
## 4158       457.3       49.6          30.3         51.0      0.0 2016-2017
## 4159       444.8       49.2          28.4         28.9      0.0 2016-2017
## 4160       471.5       43.7          22.2          8.0      0.0 2016-2017
## 4161       439.5       50.6          30.4         73.5      0.0 2016-2017
## 4162       465.5       52.4          31.6         28.9      0.0 2016-2017
## 4163       464.3       42.8          23.1         53.1      0.0 2016-2017
## 4164       457.7       45.7          25.9         53.4      0.0 2016-2017
## 4165       470.9       45.3          24.1         29.9      0.0 2016-2017
## 4166       466.0       46.0          24.5         31.0      0.0 2016-2017
## 4167       462.8       44.5          22.4         52.2      0.0 2016-2017
## 4168       446.3       52.0          31.3         96.0      0.0 2016-2017
## 4169       459.2       49.0          27.4         29.7      0.0 2016-2017
## 4170       475.0       51.1          30.4          7.8      0.0 2016-2017
## 4171       464.7       48.1          26.5         30.0      0.0 2016-2017
## 4172       479.2       46.3          25.4          7.7      0.0 2016-2017
## 4173       484.6       46.5          26.4         50.6      0.0 2016-2017
## 4174       488.1       46.3          24.8         57.7      0.0 2016-2017
## 4175       345.1       45.7          29.2          7.5      0.0 2016-2017
## 4176       327.7       41.1          24.1         27.9      0.0 2016-2017
## 4177       317.8       49.4          31.9         29.5      0.0 2016-2017
## 4178       327.0       45.0          26.1         29.0      0.0 2016-2017
## 4179       321.5       43.2          24.3         49.2      0.0 2016-2017
## 4180       327.0       43.4          26.1          6.5      0.0 2016-2017
## 4181       329.5       42.6          23.6         29.2      0.0 2016-2017
## 4182       329.1       42.4          23.7         28.8      0.0 2016-2017
## 4183       323.0       43.3          24.8         67.8      0.0 2016-2017
## 4184       327.0       43.4          24.6         48.5      0.0 2016-2017
## 4185       334.6       38.8          20.7          7.5      0.0 2016-2017
## 4186       327.0       40.4          20.7          6.9      0.0 2016-2017
## 4187       334.5       40.9          22.5          6.8      0.0 2016-2017
## 4188       339.9       43.3          24.5          7.3      0.0 2016-2017
## 4189       336.1       44.8          25.9         30.6      0.0 2016-2017
## 4190       334.4       43.6          25.7          7.2      0.0 2016-2017
## 4191       338.6       40.9          21.4          7.4      0.0 2016-2017
## 4192       333.9       42.1          25.1          6.8      0.0 2016-2017
## 4193       341.2       42.4          23.0         31.0      0.0 2016-2017
## 4194       324.0       48.6          28.6          6.7      0.0 2016-2017
## 4195       344.3       42.3          22.0         29.3      0.0 2016-2017
## 4196       338.1       36.0          17.8          7.2      0.0 2016-2017
## 4197       333.7       44.1          26.2         29.6      0.0 2016-2017
## 4198       332.8       41.9          28.3          6.5      0.0 2016-2017
## 4199       326.6       47.7          30.0         28.2      0.0 2016-2017
## 4200       338.4       44.2          28.3          6.7      0.0 2016-2017
## 4201       337.3       46.1          27.0         51.1      0.0 2016-2017
## 4202       336.8       54.8          34.9         28.3      0.0 2016-2017
## 4203       341.9       42.9          24.6          8.1      0.0 2016-2017
## 4204       329.4       51.5          30.0         29.1      0.0 2016-2017
## 4205       330.5       47.0          29.2          8.0      0.0 2016-2017
## 4206       330.2       44.1          23.8         28.0      0.0 2016-2017
## 4207       327.5       47.2          28.9         28.2      0.0 2016-2017
## 4208       329.9       43.4          24.9         51.6      0.0 2016-2017
## 4209       327.5       45.1          27.2         28.8      0.0 2016-2017
## 4210       341.5       41.9          21.4          8.2      0.0 2016-2017
## 4211       341.8       45.7          25.3          7.9      0.0 2016-2017
## 4212       338.5       50.3          32.8         28.0      0.0 2016-2017
## 4213       345.5       46.2          26.6         29.7      0.0 2016-2017
## 4214       333.7       45.7          25.3         29.8      0.0 2016-2017
## 4215       335.3       46.5          27.2          7.8      0.0 2016-2017
## 4216       332.8       59.2          41.0         50.1      0.0 2016-2017
## 4217       345.1       38.7          19.4          7.6      0.0 2016-2017
## 4218       357.3       44.0          35.2          7.2      0.0 2016-2017
## 4219       343.9       47.9          29.2          7.4      0.0 2016-2017
## 4220       346.6       47.0          28.2          7.0      0.0 2016-2017
## 4221       346.3       44.3          25.2          8.0      0.0 2016-2017
## 4222       337.7       47.3          26.7         58.6      0.0 2016-2017
## 4223       350.7       44.9          25.5         30.3      0.0 2016-2017
## 4224       349.4       52.2          32.4         55.2      0.0 2016-2017
## 4225       349.7       51.9          28.3          7.5      0.0 2016-2017
## 4226       354.2       44.1          22.5          8.3      0.0 2016-2017
## 4227       348.0       47.6          26.4         76.2      0.0 2016-2017
## 4228       358.8       47.8          25.2         31.3      0.0 2016-2017
## 4229       447.5       46.9          24.0         25.8      0.0 2016-2017
## 4230       453.3       45.1          24.0          5.0      0.0 2016-2017
## 4231       448.2       46.9          25.0         25.7      0.0 2016-2017
## 4232       450.2       43.4          22.0          5.6      0.0 2016-2017
## 4233       451.1       49.4          27.0         25.6      0.0 2016-2017
## 4234       443.8       49.4          28.0         25.2      0.0 2016-2017
## 4235       459.1       45.8          24.0          5.0      0.0 2016-2017
## 4236       462.0       43.1          22.0          5.3      0.0 2016-2017
## 4237       438.5       43.6          23.0         26.4      0.0 2016-2017
## 4238       453.9       47.8          26.0         26.2      0.0 2016-2017
## 4239       463.0       46.9          24.0          5.4      0.0 2016-2017
## 4240       457.9       48.5          26.0          5.2      0.0 2016-2017
## 4241       452.0       49.8          29.0         25.5      0.0 2016-2017
## 4242       459.5       44.4          24.0          4.8      0.0 2016-2017
## 4243       454.3       48.3          25.0         27.2      0.0 2016-2017
## 4244       455.0       44.5          22.0          5.4      0.0 2016-2017
## 4245       460.1       48.8          27.0         26.0      0.0 2016-2017
## 4246       466.5       47.7          26.0          5.7      0.0 2016-2017
## 4247       466.6       48.1          25.0          5.5      0.0 2016-2017
## 4248       461.4       48.8          26.0         26.1      0.0 2016-2017
## 4249       462.4       46.6          27.0          4.8      0.0 2016-2017
## 4250       460.1       47.6          25.0          6.2      0.0 2016-2017
## 4251       456.3       52.6          29.0          5.4      0.0 2016-2017
## 4252       465.8       51.3          29.0         48.4      0.0 2016-2017
## 4253       451.2       49.2          29.0         25.9      0.0 2016-2017
## 4254       466.2       53.2          27.0         26.5      0.0 2016-2017
## 4255       471.3       44.6          22.0          5.2      0.0 2016-2017
## 4256       455.3       53.2          31.0         45.7      0.0 2016-2017
## 4257       473.7       44.4          24.0          5.1      0.0 2016-2017
## 4258       469.5       49.2          26.0         26.9      0.0 2016-2017
## 4259       458.1       45.2          24.0         45.1      0.0 2016-2017
## 4260       466.1       49.6          28.0          5.0      0.0 2016-2017
## 4261       459.2       51.2          28.0         26.5      0.0 2016-2017
## 4262       466.7       47.8          26.0          5.1      0.0 2016-2017
## 4263       462.6       54.4          32.0         25.4      0.0 2016-2017
## 4264       463.0       44.2          22.0         26.2      0.0 2016-2017
## 4265       456.7       47.3          24.0         26.9      0.0 2016-2017
## 4266       459.2       53.2          31.0         26.8      0.0 2016-2017
## 4267       469.7       54.9          29.0         27.1      0.0 2016-2017
## 4268       462.3       48.3          26.0         49.3      0.0 2016-2017
## 4269       466.6       47.0          25.0         27.2      0.0 2016-2017
## 4270       478.1       51.5          30.0         26.3      0.0 2016-2017
## 4271       472.1       52.2          31.0          5.7      0.0 2016-2017
## 4272       458.8       45.5          25.0          5.4      0.0 2016-2017
## 4273       466.4       47.3          26.0         27.2      0.0 2016-2017
## 4274       473.0       50.9          29.0         26.7      0.0 2016-2017
## 4275       458.1       54.4          33.0         46.2      0.0 2016-2017
## 4276       448.0       44.1          23.0         71.1      0.0 2016-2017
## 4277       458.1       51.2          28.0         68.3      0.0 2016-2017
## 4278       477.3       46.0          25.0          5.5      0.0 2016-2017
## 4279       482.7       40.7          19.0         27.4      0.0 2016-2017
## 4280       469.7       47.4          25.0         50.4      0.0 2016-2017
## 4281       472.0       50.5          30.0         27.1      0.0 2016-2017
## 4282       464.7       49.3          27.0         26.7      0.0 2016-2017
## 4283       469.4       49.2          28.0         27.1      0.0 2016-2017
## 4284       476.7       45.7          24.0         26.8      0.0 2016-2017
## 4285       485.4       48.3          26.0          5.8      0.0 2016-2017
## 4286       482.2       51.8          28.0          5.7      0.0 2016-2017
## 4287       478.4       47.5          23.0         28.3      0.0 2016-2017
## 4288       467.0       44.0          21.0         47.7      0.0 2016-2017
## 4289       484.4       46.3          24.0          5.6      0.0 2016-2017
## 4290       474.6       52.2          29.0         49.0      0.0 2016-2017
## 4291       476.1       53.3          31.0         48.2      0.0 2016-2017
## 4292       488.2       48.3          23.0          5.5      0.0 2016-2017
## 4293       474.4       54.9          32.0         27.2      0.0 2016-2017
## 4294       462.0       49.5          24.0         28.7      0.0 2016-2017
## 4295       475.1       46.2          23.0         49.4      0.0 2016-2017
## 4296       479.7       51.1          27.0         27.9      0.0 2016-2017
## 4297       487.1       45.6          25.0         27.8      0.0 2016-2017
## 4298       474.7       50.2          24.0         73.7      0.0 2016-2017
## 4299       487.1       53.6          31.0         27.1      0.0 2016-2017
## 4300       480.8       49.3          26.0         28.2      0.0 2016-2017
## 4301       480.0       48.2          26.0         29.3      0.0 2016-2017
## 4302       483.7       51.1          26.0         29.7      0.0 2016-2017
## 4303       491.0       48.8          25.0         27.7      0.0 2016-2017
## 4304       492.8       46.8          24.0         26.6      0.0 2016-2017
## 4305       490.9       50.2          28.0         49.6      0.0 2016-2017
## 4306       484.1       50.9          29.0         29.5      0.0 2016-2017
## 4307       498.1       51.3          30.0         27.6      0.0 2016-2017
## 4308       478.8       47.9          25.0         52.3      0.0 2016-2017
## 4309       497.9       46.0          24.0         29.2      0.0 2016-2017
## 4310       491.9       44.7          24.0         29.2      0.0 2016-2017
## 4311       471.5       85.5          64.0         48.7      0.0 2016-2017
## 4312       492.6       55.2          31.0         28.1      0.0 2016-2017
## 4313       474.1       53.0          31.0         28.6      0.0 2016-2017
## 4314       497.6       58.8          37.0         27.1      0.0 2016-2017
## 4315       488.2       50.6          28.0         50.3      0.0 2016-2017
## 4316       487.3       54.8          31.0         28.5      0.0 2016-2017
## 4317       492.8       53.1          32.0         52.2      0.0 2016-2017
## 4318       498.5       48.5          25.0         28.1      0.0 2016-2017
## 4319       500.9       51.5          28.0         51.4      0.0 2016-2017
## 4320       472.3       51.7          29.0         70.6      0.0 2016-2017
## 4321       457.2       62.4          42.0         95.2      0.0 2016-2017
## 4322       477.8       58.5          33.0         73.8      0.0 2016-2017
## 4323       494.5       58.0          33.0         76.5      0.0 2016-2017
## 4324       500.4       53.9          31.0         52.7      0.0 2016-2017
## 4325       509.6       53.5          31.0          5.5      0.0 2016-2017
## 4326       507.2       53.1          28.0         79.1      0.0 2016-2017
## 4327       502.8       52.8          28.0         53.3      0.0 2016-2017
## 4328       505.0       51.2          27.0         53.5      0.0 2016-2017
## 4329       493.7       70.1          45.0         74.6      0.0 2016-2017
## 4330       387.4       43.2          25.0          6.8      0.0 2016-2017
## 4331       402.9       43.6          26.0          4.8      0.0 2016-2017
## 4332       398.4       42.0          24.0         26.1      0.0 2016-2017
## 4333       397.8       41.3          24.0         26.4      0.0 2016-2017
## 4334       400.2       42.4          24.0         26.5      0.0 2016-2017
## 4335       393.0       41.4          21.0          5.1      0.0 2016-2017
## 4336       397.8       43.7          23.0          5.1      0.0 2016-2017
## 4337       394.4       40.9          18.0          5.4      0.0 2016-2017
## 4338       396.0       43.5          24.0          5.3      0.0 2016-2017
## 4339       398.7       42.6          21.0          5.2      0.0 2016-2017
## 4340       410.0       43.9          22.0          5.1      0.0 2016-2017
## 4341       404.9       42.2          21.0          5.1      0.0 2016-2017
## 4342       397.7       49.1          28.0         26.4      0.0 2016-2017
## 4343       414.0       43.1          21.0          5.5      0.0 2016-2017
## 4344       404.7       42.2          21.0          5.2      0.0 2016-2017
## 4345       395.6       46.1          25.0         24.2      0.0 2016-2017
## 4346       401.6       42.2          21.0         26.0      0.0 2016-2017
## 4347       397.1       44.3          25.0         25.3      0.0 2016-2017
## 4348       400.2       42.8          21.0         26.0      0.0 2016-2017
## 4349       394.3       45.6          25.0         44.8      0.0 2016-2017
## 4350       401.5       46.1          25.0         48.5      0.0 2016-2017
## 4351       408.6       46.1          25.0         26.4      0.0 2016-2017
## 4352       415.8       45.7          23.0          5.2      0.0 2016-2017
## 4353       396.9       47.2          29.0         46.5      0.0 2016-2017
## 4354       408.0       47.4          27.0          4.9      0.0 2016-2017
## 4355       421.2       49.4          28.0          5.5      0.0 2016-2017
## 4356       404.2       46.3          24.0         74.0      0.0 2016-2017
## 4357       415.5       48.3          27.0         26.8      0.0 2016-2017
## 4358       420.6       48.1          26.0          4.9      0.0 2016-2017
## 4359       405.6       46.5          27.0         48.4      0.0 2016-2017
## 4360       353.8       43.2          25.0          7.2      0.0 2016-2017
## 4361       364.7       42.2          22.0         27.2      0.0 2016-2017
## 4362       366.2       41.4          22.0          6.6      0.0 2016-2017
## 4363       363.3       46.3          25.0          5.4      0.0 2016-2017
## 4364       363.1       47.1          28.0         48.9      0.0 2016-2017
## 4365       366.5       44.3          23.0          5.6      0.0 2016-2017
## 4366       362.5       53.7          32.0          5.3      0.0 2016-2017
## 4367       365.7       45.3          24.0         26.9      0.0 2016-2017
## 4368       367.5       47.7          28.0          5.2      0.0 2016-2017
## 4369       369.3       46.7          26.0          4.9      0.0 2016-2017
## 4370       365.9       45.4          25.0          5.5      0.0 2016-2017
## 4371       369.8       43.6          23.0          5.4      0.0 2016-2017
## 4372       361.1       44.6          23.0          5.2      0.0 2016-2017
## 4373       369.8       47.6          25.0          5.1      0.0 2016-2017
## 4374       361.9       49.4          30.0          5.3      0.0 2016-2017
## 4375       377.6       52.2          30.0         26.3      0.0 2016-2017
## 4376       373.8       46.1          23.0         27.9      0.0 2016-2017
## 4377       370.4       49.3          25.0         47.9      0.0 2016-2017
## 4378       362.5       47.2          27.0          5.3      0.0 2016-2017
## 4379       375.9       49.9          27.0         29.3      0.0 2016-2017
## 4380       371.9       45.3          23.0         26.8      0.0 2016-2017
## 4381       376.8       49.1          26.0         48.8      0.0 2016-2017
## 4382       362.5       49.1          29.0         25.9      0.0 2016-2017
## 4383       372.6       51.9          31.0         27.6      0.0 2016-2017
## 4384       364.9       45.4          25.0         25.9      0.0 2016-2017
## 4385       375.4       47.3          24.0          5.0      0.0 2016-2017
## 4386       359.7       48.4          27.0          5.2      0.0 2016-2017
## 4387       365.4       48.1          28.0          7.1      0.0 2016-2017
## 4388       370.4       48.8          28.0         27.5      0.0 2016-2017
## 4389       373.0       47.2          26.0          5.8      0.0 2016-2017
## 4390       372.8       45.8          24.0          5.4      0.0 2016-2017
## 4391       386.5       44.4          22.0          6.8      0.0 2016-2017
## 4392       358.9       48.5          28.0         28.8      0.0 2016-2017
## 4393       369.3       44.6          24.0         29.2      0.0 2016-2017
## 4394       367.5       45.1          23.0         50.9      0.0 2016-2017
## 4395       370.7       51.3          29.0         27.5      0.0 2016-2017
## 4396       370.6       48.6          23.0         29.3      0.0 2016-2017
## 4397       373.5       50.5          28.0         27.9      0.0 2016-2017
## 4398       371.1       57.8          36.0         26.8      0.0 2016-2017
## 4399       388.5       48.8          23.0          5.6      0.0 2016-2017
## 4400       374.3       50.0          30.0         72.4      0.0 2016-2017
## 4401       378.8       47.2          25.0         29.3      0.0 2016-2017
## 4402       373.3       51.2          29.0         27.7      0.0 2016-2017
## 4403       377.4       61.6          40.0         27.0      0.0 2016-2017
## 4404       372.6       53.1          30.0         52.0      0.0 2016-2017
## 4405       382.4       44.5          22.0         28.2      0.0 2016-2017
## 4406       373.3       48.9          26.0         48.3      0.0 2016-2017
## 4407       375.3       45.8          23.0         51.2      0.0 2016-2017
## 4408       385.3       50.2          28.0         50.7      0.0 2016-2017
## 4409       373.2       55.1          34.0          5.0      0.0 2016-2017
## 4410       396.3       55.0          31.0         29.1      0.0 2016-2017
## 4411       378.2       48.6          26.0         28.1      0.0 2016-2017
## 4412       400.5       40.0          18.0         28.1      0.0 2016-2017
## 4413       391.2       50.7          28.0         28.9      0.0 2016-2017
## 4414       391.8       54.6          31.0         30.0      0.0 2016-2017
## 4415       392.0       55.4          32.0         53.0      0.0 2016-2017
## 4416       388.1       50.6          26.0         53.0      0.0 2016-2017
## 4417       506.9       45.5          23.0          4.0      0.0 2016-2017
## 4418       506.9       53.4          32.0         27.9      0.0 2016-2017
## 4419       514.1       50.2          29.0         25.8      0.0 2016-2017
## 4420       521.0       59.5          38.0          3.9      0.0 2016-2017
## 4421       512.5       49.7          29.0         53.5      0.0 2016-2017
## 4422       510.5       60.1          34.0         26.8      0.0 2016-2017
## 4423       520.3       54.2          30.0         28.1      0.0 2016-2017
## 4424       498.6       54.7          33.0         74.6      0.0 2016-2017
## 4425       517.3       64.3          40.0          4.8      0.0 2016-2017
## 4426       506.5       65.6          42.0         51.7      0.0 2016-2017
## 4427       527.4       48.1          23.0         27.9      0.0 2016-2017
## 4428       521.1       56.9          33.0         52.5      0.0 2016-2017
## 4429       510.9       49.6          26.0         55.0      0.0 2016-2017
## 4430       521.5       48.1          25.0         51.3      0.0 2016-2017
## 4431       515.7       57.3          33.0         53.7      0.0 2016-2017
## 4432       519.8       46.3          23.0         25.4      0.0 2016-2017
## 4433       519.9       54.1          30.0         53.0      0.0 2016-2017
## 4434       528.7       52.7          29.0         29.2      0.0 2016-2017
## 4435       519.6       48.4          25.0         53.2      0.0 2016-2017
## 4436       518.7       51.4          25.0         27.8      0.0 2016-2017
## 4437       521.7       53.9          32.0         26.8      0.0 2016-2017
## 4438       523.7       51.3          30.0         51.6      0.0 2016-2017
## 4439       524.9       50.5          24.0          5.0      0.0 2016-2017
## 4440       520.5       48.4          22.0         55.1      0.0 2016-2017
## 4441       523.4       50.8          26.0         28.3      0.0 2016-2017
## 4442       534.0       52.6          29.0         28.0      0.0 2016-2017
## 4443       509.2       55.4          32.0         53.9      0.0 2016-2017
## 4444       532.3       56.8          35.0          4.1      0.0 2016-2017
## 4445       527.2       53.4          28.0         28.2      0.0 2016-2017
## 4446       530.7       55.3          33.0         51.9      0.0 2016-2017
## 4447       533.0       56.9          34.0         28.0      0.0 2016-2017
## 4448       514.3       52.8          30.0         28.1      0.0 2016-2017
## 4449       528.6       52.3          28.0         53.0      0.0 2016-2017
## 4450       518.7       52.4          29.0         51.2      0.0 2016-2017
## 4451       529.8       63.0          41.0         52.5      0.0 2016-2017
## 4452       532.6       50.3          25.0         29.7      0.0 2016-2017
## 4453       530.6       54.3          30.0         28.4      0.0 2016-2017
## 4454       533.9       56.4          33.0         28.7      0.0 2016-2017
## 4455       518.8       51.5          26.0         28.7      0.0 2016-2017
## 4456       521.6       54.3          31.0         29.4      0.0 2016-2017
## 4457       527.2       67.7          45.0         28.5      0.0 2016-2017
## 4458       531.7       53.9          30.0         53.6      0.0 2016-2017
## 4459       543.4       62.9          35.0         30.0      0.0 2016-2017
## 4460       513.7       57.8          35.0        102.8      0.0 2016-2017
## 4461       535.4       55.5          31.0          4.6      0.0 2016-2017
## 4462       517.4       68.6          46.0         52.6      0.0 2016-2017
## 4463       529.4       52.8          29.0         28.2      0.0 2016-2017
## 4464       532.5       52.7          27.0         55.2      0.0 2016-2017
## 4465       537.5       50.9          23.0         27.8      0.0 2016-2017
## 4466       522.4       71.0          49.0         54.9      0.0 2016-2017
## 4467       556.7       57.6          33.0          4.5      0.0 2016-2017
## 4468       557.4       57.7          31.0         27.4      0.0 2016-2017
## 4469       544.3       51.0          27.0         28.7      0.0 2016-2017
## 4470       513.1       51.2          27.0         29.3      0.0 2016-2017
## 4471       552.1       53.3          28.0          4.8      0.0 2016-2017
## 4472       543.8       50.7          27.0         30.0      0.0 2016-2017
## 4473       512.2       50.6          25.0         79.7      0.0 2016-2017
## 4474       540.1       51.2          29.0         28.7      0.0 2016-2017
## 4475       537.7       62.8          37.0          4.7      0.0 2016-2017
## 4476       533.9       49.8          26.0         55.2      0.0 2016-2017
## 4477       535.5       50.8          26.0         56.1      0.0 2016-2017
## 4478       538.4       55.6          31.0          4.8      0.0 2016-2017
## 4479       545.6       56.6          30.0         55.7      0.0 2016-2017
## 4480       518.8       60.4          38.0         53.1      0.0 2016-2017
## 4481       542.0       52.5          27.0         57.0      0.0 2016-2017
## 4482       557.9       52.2          27.0          4.8      0.0 2016-2017
## 4483       538.6       50.8          27.0         52.3      0.0 2016-2017
## 4484       547.6       59.8          33.0         56.2      0.0 2016-2017
## 4485       532.6       59.9          36.0         28.5      0.0 2016-2017
## 4486       536.0       47.9          24.0          4.6      0.0 2016-2017
## 4487       525.5       67.2          40.0         83.3      0.0 2016-2017
## 4488       541.6       51.3          26.0          4.5      0.0 2016-2017
## 4489       545.4       47.7          17.0         80.2      0.0 2016-2017
## 4490       553.5       54.2          30.0         31.0      0.0 2016-2017
## 4491       532.3       58.1          32.0          4.6      0.0 2016-2017
## 4492       540.8       51.9          27.0         55.0      0.0 2016-2017
## 4493       561.7       56.8          33.0         29.7      0.0 2016-2017
## 4494       543.7       59.5          36.0         29.9      0.0 2016-2017
## 4495       564.4       59.3          33.0          5.1      0.0 2016-2017
## 4496       547.7       51.1          26.0         57.3      0.0 2016-2017
## 4497       561.7       46.0          21.0          4.6      0.0 2016-2017
## 4498       558.3       62.3          38.0         31.3      0.0 2016-2017
## 4499       557.7       53.7          28.0         29.8      0.0 2016-2017
## 4500       535.8       64.1          39.0         30.7      0.0 2016-2017
## 4501       534.9       64.5          41.0         54.7      0.0 2016-2017
## 4502       552.0       58.5          34.0         55.2      0.0 2016-2017
## 4503       530.6       50.4          27.0         28.4      0.0 2016-2017
## 4504       524.3       62.9          39.0         84.1      0.0 2016-2017
## 4505       543.0       56.8          32.0         55.4      0.0 2016-2017
## 4506       576.0       54.3          28.0         32.2      0.0 2016-2017
## 4507       559.5       63.3          37.0         32.3      0.0 2016-2017
## 4508       551.8       67.2          42.0         60.1      0.0 2016-2017
## 4509       543.4       61.6          37.0         84.6      0.0 2016-2017
## 4510       556.5       49.5          21.0         32.7      0.0 2016-2017
## 4511       520.8       51.1          27.0         86.0      0.0 2016-2017
## 4512       553.8       57.3          27.0         29.0      0.0 2016-2017
## 4513       521.1       61.3          36.0         57.0      0.0 2016-2017
## 4514       557.6       69.6          53.0         55.1      0.0 2016-2017
## 4515       562.5       60.2          34.0         58.2      0.0 2016-2017
## 4516       575.3       52.4          27.0         57.4      0.0 2016-2017
## 4517       576.7       56.1          29.0         59.2      0.0 2016-2017
## 4518       574.1       71.1          44.0         31.1      0.0 2016-2017
## 4519       427.8       47.6          26.0          4.1      0.0 2016-2017
## 4520       424.4       48.8          29.0         26.4      0.0 2016-2017
## 4521       407.7       46.7          24.0          4.4      0.0 2016-2017
## 4522       423.6       45.4          22.0          4.8      0.0 2016-2017
## 4523       428.6       45.6          25.0         26.9      0.0 2016-2017
## 4524       429.2       49.7          28.0          4.2      0.0 2016-2017
## 4525       423.5       53.1          31.0         28.3      0.0 2016-2017
## 4526       428.2       45.8          22.0         28.4      0.0 2016-2017
## 4527       425.3       48.7          27.0          3.9      0.0 2016-2017
## 4528       426.7       45.5          23.0          4.2      0.0 2016-2017
## 4529       439.0       44.4          23.0          4.4      0.0 2016-2017
## 4530       408.6       54.4          29.0         50.4      0.0 2016-2017
## 4531       436.5       48.6          27.0         26.5      0.0 2016-2017
## 4532       423.1       46.2          24.0          4.1      0.0 2016-2017
## 4533       446.4       44.8          21.0          4.7      0.0 2016-2017
## 4534       423.1       52.1          29.0         26.1      0.0 2016-2017
## 4535       433.3       44.6          23.0          4.2      0.0 2016-2017
## 4536       436.7       47.8          26.0         49.6      0.0 2016-2017
## 4537       430.2       43.9          22.0         26.8      0.0 2016-2017
## 4538       425.6       48.5          24.0          4.0      0.0 2016-2017
## 4539       419.4       50.4          29.0          4.1      0.0 2016-2017
## 4540       434.9       46.8          25.0         26.4      0.0 2016-2017
## 4541       432.4       47.5          27.0         26.4      0.0 2016-2017
## 4542       439.5       47.0          26.0          4.3      0.0 2016-2017
## 4543       436.0       55.2          35.0         26.6      0.0 2016-2017
## 4544       459.0       47.8          25.0         29.6      0.0 2016-2017
## 4545       452.3       46.9          23.0          4.5      0.0 2016-2017
## 4546       433.3       48.1          26.0         47.7      0.0 2016-2017
## 4547       446.2       47.1          24.0          4.4      0.0 2016-2017
## 4548       373.0       64.4          40.0          5.0      0.0 2016-2017
## 4549       384.5       65.8          43.0         50.0      0.0 2016-2017
## 4550       392.4       54.8          32.0         46.5      0.0 2016-2017
## 4551       382.7       67.6          42.0         27.4      0.0 2016-2017
## 4552       383.0       67.0          44.0         70.9      0.0 2016-2017
## 4553       384.8       50.1          29.0          4.6      0.0 2016-2017
## 4554       382.9       88.5          67.0         73.3      0.0 2016-2017
## 4555       385.4       54.4          31.0         50.9      0.0 2016-2017
## 4556       387.1       50.2          28.0         27.6      0.0 2016-2017
## 4557       379.4       94.6          72.0         75.0      0.0 2016-2017
## 4558       395.0       52.1          28.0          4.1      0.0 2016-2017
## 4559       385.5       56.1          36.0          3.6      0.0 2016-2017
## 4560       400.6       60.8          40.0          3.8      0.0 2016-2017
## 4561       396.2       44.4          19.0         27.6      0.0 2016-2017
## 4562       402.6       56.9          33.0         50.2      0.0 2016-2017
## 4563       378.4       62.7          42.0         27.7      0.0 2016-2017
## 4564       387.4       49.5          26.0         27.4      0.0 2016-2017
## 4565       386.4       45.9          28.0         26.9      0.0 2016-2017
## 4566       391.7       70.5          49.0        121.1      0.0 2016-2017
## 4567       374.5       57.6          36.0         27.1      0.0 2016-2017
## 4568       403.9       51.8          32.0         28.0      0.0 2016-2017
## 4569       408.2       52.1          29.0         28.9      0.0 2016-2017
## 4570       391.2       49.6          25.0         74.7      0.0 2016-2017
## 4571       387.9       54.2          33.0          3.9      0.0 2016-2017
## 4572       384.0       49.9          27.0         51.9      0.0 2016-2017
## 4573       386.9       61.0          39.0         51.0      0.0 2016-2017
## 4574       407.3       54.5          31.0          4.5      0.0 2016-2017
## 4575       397.0       63.5          41.0         74.5      0.0 2016-2017
## 4576       380.7       62.8          42.0         54.9      0.0 2016-2017
## 4577       402.2       59.9          37.0         55.6      0.0 2016-2017
## 4578       395.2       53.9          31.0         54.5      0.0 2016-2017
## 4579       397.6       49.8          25.0         29.4      0.0 2016-2017
## 4580       399.8       54.1          29.0         56.4      0.0 2016-2017
## 4581       391.6       61.2          39.0         53.1      0.0 2016-2017
## 4582       396.6       58.4          35.0         78.2      0.0 2016-2017
## 4583       382.6       55.3          29.0         59.2      0.0 2016-2017
## 4584       406.4       44.4          24.0         56.1      0.0 2016-2017
## 4585       396.7       62.4          38.0         53.0      0.0 2016-2017
## 4586       401.5       55.1          32.0         52.5      0.0 2016-2017
## 4587       404.4       54.9          34.0        102.6      0.0 2016-2017
## 4588       407.7       54.4          29.0         53.3      0.0 2016-2017
## 4589       415.5       68.2          44.0         28.8      0.0 2016-2017
## 4590       409.8       53.5          31.0         27.8      0.0 2016-2017
## 4591       400.6       49.0          27.0         28.5      0.0 2016-2017
## 4592       399.8       53.6          29.0         83.2      0.0 2016-2017
## 4593       400.5       55.6          31.0         29.5      0.0 2016-2017
## 4594       422.6       57.0          34.0          4.1      0.0 2016-2017
## 4595       406.2       58.5          35.0        109.7      0.0 2016-2017
## 4596       405.3       69.8          46.0        113.3      0.0 2016-2017
## 4597       400.7       88.1          66.0         56.6      0.0 2016-2017
## 4598       409.1       66.1          43.0         54.3      0.0 2016-2017
## 4599       424.3       56.2          40.0         54.2      0.0 2016-2017
## 4600       417.2       72.2          49.0         30.6      0.0 2016-2017
## 4601       404.9       66.6          47.0         79.6      0.0 2016-2017
## 4602       422.4       60.3          37.0         93.3      0.0 2016-2017
## 4603       436.5       76.1          51.0        121.3      0.0 2016-2017
## 4604       436.9       45.5          22.4          4.7      0.0 2016-2017
## 4605       452.8       47.8          25.2          5.2      0.0 2016-2017
## 4606       454.8       47.0          24.4          5.0      0.0 2016-2017
## 4607       445.6       55.1          33.8         27.1      0.0 2016-2017
## 4608       442.6       48.2          22.8         27.3      0.0 2016-2017
## 4609       451.1       50.0          27.7          4.4      0.0 2016-2017
## 4610       459.3       53.8          32.4          5.2      0.0 2016-2017
## 4611       460.9       57.9          37.0          4.5      0.0 2016-2017
## 4612       460.1       51.6          26.0          5.4      0.0 2016-2017
## 4613       449.6       49.2          25.9          4.9      0.0 2016-2017
## 4614       458.9       56.4          31.9          4.8      0.0 2016-2017
## 4615       456.0       49.0          26.2          4.9      0.0 2016-2017
## 4616       453.7       50.4          30.3          5.1      0.0 2016-2017
## 4617       446.0       53.5          28.1         27.7      0.0 2016-2017
## 4618       454.6       51.9          28.9          5.0      0.0 2016-2017
## 4619       458.4       46.0          26.7         26.9      0.0 2016-2017
## 4620       456.5       49.3          26.2          5.0      0.0 2016-2017
## 4621       447.6       54.9          32.6         26.8      0.0 2016-2017
## 4622       463.7       51.3          29.4          4.4      0.0 2016-2017
## 4623       464.8       52.4          28.6          5.0      0.0 2016-2017
## 4624       453.1       62.3          40.5          4.8      0.0 2016-2017
## 4625       453.8       52.3          29.0         27.5      0.0 2016-2017
## 4626       453.3       47.4          25.1         26.4      0.0 2016-2017
## 4627       452.3       46.4          22.5         27.1      0.0 2016-2017
## 4628       466.3       50.1          25.9          5.4      0.0 2016-2017
## 4629       465.3       50.1          26.5         28.5      0.0 2016-2017
## 4630       456.4       44.5          20.3          5.4      0.0 2016-2017
## 4631       452.5       46.5          22.0         27.7      0.0 2016-2017
## 4632       461.1       53.1          29.5         26.7      0.0 2016-2017
## 4633       450.7       56.3          33.4         27.3      0.0 2016-2017
## 4634       456.6       45.9          22.3         27.4      0.0 2016-2017
## 4635       462.8       50.9          27.4          4.9      0.0 2016-2017
## 4636       445.4       60.1          36.6         53.3      0.0 2016-2017
## 4637       464.3       51.5          26.7          4.9      0.0 2016-2017
## 4638       468.0       52.4          27.8         27.8      0.0 2016-2017
## 4639       462.1       54.8          30.6          5.1      0.0 2016-2017
## 4640       465.4       46.0          24.3         28.0      0.0 2016-2017
## 4641       464.4       53.4          30.9         27.3      0.0 2016-2017
## 4642       456.5       47.3          25.5         50.3      0.0 2016-2017
## 4643       462.5       49.4          27.4         26.5      0.0 2016-2017
## 4644       468.1       62.9          41.1         27.2      0.0 2016-2017
## 4645       456.1       56.8          32.2         52.1      0.0 2016-2017
## 4646       454.2       55.0          30.6         76.0      0.0 2016-2017
## 4647       467.2       56.2          31.7          5.2      0.0 2016-2017
## 4648       459.5       50.2          26.6         52.3      0.0 2016-2017
## 4649       474.8       52.2          31.2          4.8      0.0 2016-2017
## 4650       461.3       49.6          26.2         27.5      0.0 2016-2017
## 4651       470.5       52.2          27.4          5.0      0.0 2016-2017
## 4652       454.0       51.3          28.8         27.8      0.0 2016-2017
## 4653       485.4       52.5          27.0          5.1      0.0 2016-2017
## 4654       469.4       62.8          38.1         28.6      0.0 2016-2017
## 4655       480.7       62.4          34.6          6.1      0.0 2016-2017
## 4656       479.6       52.5          27.4          4.9      0.0 2016-2017
## 4657       455.5       47.3          23.1         29.2      0.0 2016-2017
## 4658       463.4       51.2          24.5          5.2      0.0 2016-2017
## 4659       457.6       49.2          26.4         51.7      0.0 2016-2017
## 4660       472.6       50.7          25.8         28.4      0.0 2016-2017
## 4661       455.0       50.4          28.5         52.2      0.0 2016-2017
## 4662       469.8       49.2          26.3         27.9      0.0 2016-2017
## 4663       467.1       54.3          31.1         29.3      0.0 2016-2017
## 4664       464.5       49.1          25.0         53.9      0.0 2016-2017
## 4665       451.6       53.2          29.4         74.1      0.0 2016-2017
## 4666       478.6       49.5          25.6         51.0      0.0 2016-2017
## 4667       456.3       59.4          36.8         76.7      0.0 2016-2017
## 4668       495.3       54.5          26.8          5.7      0.0 2016-2017
## 4669       482.9       52.7          29.8          5.1      0.0 2016-2017
## 4670       487.8       50.8          26.5          5.3      0.0 2016-2017
## 4671       484.7       46.0          20.3          5.6      0.0 2016-2017
## 4672       465.9       52.6          30.9         27.3      0.0 2016-2017
## 4673       478.0       51.6          28.1         28.2      0.0 2016-2017
## 4674       469.1       54.7          30.5         29.1      0.0 2016-2017
## 4675       486.4       55.6          34.4         29.3      0.0 2016-2017
## 4676       483.0       53.2          29.0         29.6      0.0 2016-2017
## 4677       488.3       51.6          26.8          5.5      0.0 2016-2017
## 4678       468.6       54.5          31.0         52.9      0.0 2016-2017
## 4679       485.5       52.9          29.5          5.7      0.0 2016-2017
## 4680       468.4       55.4          29.7         78.9      0.0 2016-2017
## 4681       472.0       60.0          36.0         28.7      0.0 2016-2017
## 4682       472.1       55.2          30.5         29.5      0.0 2016-2017
## 4683       498.0       56.5          28.9          6.1      0.0 2016-2017
## 4684       483.8       56.6          35.6         52.5      0.0 2016-2017
## 4685       477.4       60.3          38.1         29.1      0.0 2016-2017
## 4686       472.7       56.0          32.7         78.9      0.0 2016-2017
## 4687       478.2       60.5          35.0         53.7      0.0 2016-2017
## 4688       462.3       55.8          30.6         83.2      0.0 2016-2017
## 4689       485.7       60.3          33.5         28.5      0.0 2016-2017
## 4690       486.6       52.8          27.0         51.7      0.0 2016-2017
## 4691       486.0       59.7          35.4          5.7      0.0 2016-2017
## 4692       482.4       65.5          40.9         54.2      0.0 2016-2017
## 4693       487.3       52.7          26.9         56.7      0.0 2016-2017
## 4694       483.0       58.1          31.8         53.0      0.0 2016-2017
## 4695       463.6       56.2          31.7         76.1      0.0 2016-2017
## 4696       484.6       54.4          30.4         54.9      0.0 2016-2017
## 4697       481.0       50.7          24.5         29.9      0.0 2016-2017
## 4698       513.3       53.8          29.9         31.1      0.0 2016-2017
## 4699       494.4       47.5          24.0         54.7      0.0 2016-2017
## 4700       470.9       65.9          41.6        126.8      0.0 2016-2017
## 4701       474.0       64.8          38.8        102.4      0.0 2016-2017
## 4702       478.4       56.4          34.0         28.5      0.0 2016-2017
## 4703       461.5       50.8          25.3        105.5      0.0 2016-2017
## 4704       499.3       60.8          33.9         29.7      0.0 2016-2017
## 4705       471.2       55.9          31.1        102.8      0.0 2016-2017
## 4706       523.6       55.1          28.7         31.7      0.0 2016-2017
## 4707       481.8       61.2          34.2         55.1      0.0 2016-2017
## 4708       488.0       64.0          37.5         84.6      0.0 2016-2017
## 4709       573.4       45.7          22.6          0.0   2437.6 2016-2017
## 4710       570.5       75.0          51.9        120.0   2453.7 2016-2017
## 4711       592.9       47.2          26.0          0.0   2549.3 2016-2017
## 4712       582.8       46.4          22.7          0.0   2488.5 2016-2017
## 4713       584.3       57.8          36.4         60.0   2492.0 2016-2017
## 4714       586.1       65.7          41.4        120.0   2514.3 2016-2017
## 4715       576.4       67.8          42.9          0.0   2553.5 2016-2017
## 4716       599.8       56.2          33.5         60.0   2613.0 2016-2017
## 4717       585.2       52.7          28.9         60.0   2514.6 2016-2017
## 4718       606.5       53.4          29.3         60.0   2570.2 2016-2017
## 4719       578.6       67.1          40.1        180.0   2473.0 2016-2017
## 4720       582.3       58.4          34.6         60.0   2485.0 2016-2017
## 4721       589.5       44.7          22.1          0.0   2546.9 2016-2017
## 4722       598.3       53.2          30.0         60.0   2561.1 2016-2017
## 4723       590.6       52.3          27.4        120.0   2525.0 2016-2017
## 4724       598.5       61.6          37.1         60.0   2567.7 2016-2017
## 4725       589.2       61.5          35.8          0.0   2571.1 2016-2017
## 4726       575.2       69.5          45.2        120.0   2499.5 2016-2017
## 4727       587.3       71.3          49.1          0.0   2586.0 2016-2017
## 4728       625.2       49.8          24.7          0.0   2682.0 2016-2017
## 4729       601.8       54.8          32.6         60.0   2588.3 2016-2017
## 4730       588.5       93.5          70.2         60.0   2596.3 2016-2017
## 4731       576.4       60.3          38.5         60.0   2497.6 2016-2017
## 4732       587.4       46.2          22.6          0.0   2503.2 2016-2017
## 4733       570.7       66.3          43.4         60.0   2500.1 2016-2017
## 4734       601.3       67.3          43.2        120.0   2608.3 2016-2017
## 4735       609.9       57.6          33.3         60.0   2595.9 2016-2017
## 4736       579.8       57.8          34.2         60.0   2508.5 2016-2017
## 4737       612.1       52.2          24.7          0.0   2608.2 2016-2017
## 4738       574.5       59.1          35.9        240.0   2462.3 2016-2017
## 4739       578.8       51.2          26.5         60.0   2514.5 2016-2017
## 4740       577.2       69.3          48.0        120.0   2508.8 2016-2017
## 4741       572.0       62.3          44.2         60.0   2525.1 2016-2017
## 4742       573.5       50.3          25.9         60.0   2471.4 2016-2017
## 4743       598.8       47.8          24.7         60.0   2569.7 2016-2017
## 4744       595.5       57.7          34.1          0.0   2583.1 2016-2017
## 4745       612.9       61.7          37.1         60.0   2635.6 2016-2017
## 4746       596.7       67.7          46.6        120.0   2594.7 2016-2017
## 4747       625.9       53.1          30.0         60.0   2689.9 2016-2017
## 4748       618.6       55.2          31.4         60.0   2643.3 2016-2017
## 4749       620.5       63.5          37.7         60.0   2639.3 2016-2017
## 4750       589.1       67.9          44.5        120.0   2559.7 2016-2017
## 4751       628.3       49.0          26.8         60.0   2653.4 2016-2017
## 4752       607.0      117.8          53.3         60.0   2618.8 2016-2017
## 4753       601.9       66.6          42.2        120.0   2621.0 2016-2017
## 4754       568.3       54.4          32.8        120.0   2475.2 2016-2017
## 4755       618.3       66.3          41.1         60.0   2669.6 2016-2017
## 4756       593.9       55.5          30.9        180.0   2585.4 2016-2017
## 4757       583.9       59.9          34.8        240.0   2519.9 2016-2017
## 4758       607.9       57.1          32.5        120.0   2589.9 2016-2017
## 4759       595.5       70.6          46.7        180.0   2534.2 2016-2017
## 4760       602.3       73.7          50.1        120.0   2609.9 2016-2017
## 4761       616.9       59.6          34.4         60.0   2619.9 2016-2017
## 4762       589.5       62.0          39.2        120.0   2589.3 2016-2017
## 4763       587.0       67.7          42.2        180.0   2526.4 2016-2017
## 4764       607.0       84.2          58.7         60.0   2639.8 2016-2017
## 4765       601.4       66.3          42.5        180.0   2590.1 2016-2017
## 4766       597.3       54.9          30.1        120.0   2594.8 2016-2017
## 4767       593.4       58.2          33.3        180.0   2536.1 2016-2017
## 4768       619.7       60.5          35.6        120.0   2649.2 2016-2017
## 4769       590.4       57.6          32.2        180.0   2543.4 2016-2017
## 4770       639.4       61.0          34.8         60.0   2683.5 2016-2017
## 4771       617.9       61.7          35.8        180.0   2654.5 2016-2017
## 4772       617.3       60.3          36.3        120.0   2654.0 2016-2017
## 4773       572.4       58.4          33.1        120.0   2463.1 2016-2017
## 4774       573.1       74.6          52.1        240.0   2507.9 2016-2017
## 4775       613.4       81.7          56.7        120.0   2666.2 2016-2017
## 4776       641.0       60.3          33.7        120.0   2722.2 2016-2017
## 4777       581.2       48.3          25.1         60.0   2543.6 2016-2017
## 4778       613.1       77.7          50.8         60.0   2623.2 2016-2017
## 4779       596.8       50.6          26.0        120.0   2544.1 2016-2017
## 4780       634.5       52.7          26.9        120.0   2744.3 2016-2017
## 4781       617.1       56.1          30.9          0.0   2715.4 2016-2017
## 4782       639.5       50.8          24.3         60.0   2699.8 2016-2017
## 4783       605.1       48.7          22.3        240.0   2607.4 2016-2017
## 4784       643.2       66.8          41.4         60.0   2754.8 2016-2017
## 4785       585.6       55.2          32.1        240.0   2538.9 2016-2017
## 4786       603.6       59.4          34.2         60.0   2628.9 2016-2017
## 4787       622.8       58.2          31.3          0.0   2677.9 2016-2017
## 4788       585.6       45.2          21.0         60.0   2530.8 2016-2017
## 4789       639.8       63.5          38.5        120.0   2765.7 2016-2017
## 4790       638.8       70.4          43.4        120.0   2781.3 2016-2017
## 4791       620.9       50.5          26.0         60.0   2630.3 2016-2017
## 4792       622.9       58.1          31.9         60.0   2707.8 2016-2017
## 4793       609.0       59.4          38.9        180.0   2610.5 2016-2017
## 4794       606.1       84.1          62.1         60.0   2679.2 2016-2017
## 4795       639.7       64.3          37.8        120.0   2797.3 2016-2017
## 4796       577.4       71.1          44.8        120.0   2540.4 2016-2017
## 4797       619.1       58.3          33.9        180.0   2620.3 2016-2017
## 4798       650.6       60.5          35.3        120.0   2739.5 2016-2017
## 4799       620.1       66.1          40.7        120.0   2652.0 2016-2017
## 4800       588.1       63.1          39.2        240.0   2521.1 2016-2017
## 4801       646.1       72.7          46.7        120.0   2788.0 2016-2017
## 4802       669.8       69.6          46.4        120.0   2835.5 2016-2017
## 4803       602.8       71.1          46.0        180.0   2565.1 2016-2017
## 4804       629.3       47.8          23.5        180.0   2656.4 2016-2017
## 4805       605.0       79.5          52.3        240.0   2620.0 2016-2017
## 4806       614.6       71.5          46.6        240.0   2717.3 2016-2017
## 4807       634.2       66.6          40.0        120.0   2722.1 2016-2017
## 4808       657.2       63.6          37.6        180.0   2782.8 2016-2017
## 4809       628.9       59.5          36.1        120.0   2684.8 2016-2017
## 4810       603.0       56.4          31.8        180.0   2636.8 2016-2017
## 4811       638.1       58.0          31.2        180.0   2737.3 2016-2017
## 4812       328.4       48.1          27.1          5.3      0.0 2016-2017
## 4813       331.2       46.6          24.2          5.4      0.0 2016-2017
## 4814       324.1       50.7          31.8         50.2      0.0 2016-2017
## 4815       328.3       46.3          24.6          4.8      0.0 2016-2017
## 4816       326.1       53.1          30.7         26.8      0.0 2016-2017
## 4817       331.3       46.8          20.8          5.0      0.0 2016-2017
## 4818       332.8       52.3          31.6          4.5      0.0 2016-2017
## 4819       328.2       40.8          21.5          4.5      0.0 2016-2017
## 4820       324.5       48.8          24.6         26.6      0.0 2016-2017
## 4821       322.0       43.9          20.9         27.6      0.0 2016-2017
## 4822       335.1       47.7          23.4         27.9      0.0 2016-2017
## 4823       329.9       48.9          26.5         27.1      0.0 2016-2017
## 4824       335.8       48.9          24.6         28.3      0.0 2016-2017
## 4825       335.7       51.6          29.8         52.6      0.0 2016-2017
## 4826       338.9       51.9          27.8         51.4      0.0 2016-2017
## 4827       329.9       52.2          28.2          4.9      0.0 2016-2017
## 4828       327.3       47.5          28.0         52.2      0.0 2016-2017
## 4829       334.9       51.2          29.1          4.7      0.0 2016-2017
## 4830       328.8       52.0          29.5          4.6      0.0 2016-2017
## 4831       328.1       48.5          25.4         27.9      0.0 2016-2017
## 4832       321.8       49.1          31.5         28.8      0.0 2016-2017
## 4833       330.6       49.4          26.7          5.6      0.0 2016-2017
## 4834       329.8       44.6          23.3         50.0      0.0 2016-2017
## 4835       339.1       47.2          26.0         52.8      0.0 2016-2017
## 4836       337.2       49.8          30.5         27.2      0.0 2016-2017
## 4837       326.5       42.8          21.0         26.2      0.0 2016-2017
## 4838       321.6       49.1          26.9         49.8      0.0 2016-2017
## 4839       328.1       44.3          19.6         52.1      0.0 2016-2017
## 4840       328.8       43.6          22.1         28.2      0.0 2016-2017
## 4841       331.3       45.2          23.8         31.4      0.0 2016-2017
## 4842       329.5       52.6          34.6         49.9      0.0 2016-2017
## 4843       332.1       48.1          26.7         27.6      0.0 2016-2017
## 4844       329.7       54.4          33.8         71.2      0.0 2016-2017
## 4845       337.9       52.9          29.1          5.2      0.0 2016-2017
## 4846       340.0       63.4          40.9         26.3      0.0 2016-2017
## 4847       342.3       47.1          23.3         27.7      0.0 2016-2017
## 4848       341.4       50.6          26.4         28.1      0.0 2016-2017
## 4849       339.9       59.8          34.3         52.3      0.0 2016-2017
## 4850       333.7       50.8          29.0          4.5      0.0 2016-2017
## 4851       344.0       66.8          45.1         26.9      0.0 2016-2017
## 4852       333.4       63.3          40.4         26.6      0.0 2016-2017
## 4853       332.1       52.8          28.6         51.6      0.0 2016-2017
## 4854       338.3       49.2          25.9         27.9      0.0 2016-2017
## 4855       352.2       54.8          36.1          5.3      0.0 2016-2017
## 4856       336.5       57.4          34.6         52.8      0.0 2016-2017
## 4857       332.8       55.1          30.6         51.8      0.0 2016-2017
## 4858       343.4       55.3          33.0         28.3      0.0 2016-2017
## 4859       345.8       55.4          38.8         29.3      0.0 2016-2017
## 4860       340.2       52.2          38.7         28.2      0.0 2016-2017
## 4861       338.0       62.2          39.7         50.0      0.0 2016-2017
## 4862       343.9       58.0          34.0         53.3      0.0 2016-2017
## 4863       336.7       51.0          26.6         78.2      0.0 2016-2017
## 4864       338.4       59.4          36.2         78.2      0.0 2016-2017
## 4865       337.5       51.8          28.6         54.7      0.0 2016-2017
## 4866       343.1       59.3          36.0         78.6      0.0 2016-2017
## 4867       351.5       49.4          25.3         28.9      0.0 2016-2017
## 4868       335.4       49.0          26.4        101.2      0.0 2016-2017
## 4869       350.4       54.9          33.1         79.4      0.0 2016-2017
## 4870       359.6       52.2          28.0         53.4      0.0 2016-2017
## 4871       454.7       38.6          22.8          8.5      0.0 2016-2017
## 4872       455.2       38.6          22.3         29.9      0.0 2016-2017
## 4873       466.7       37.8          21.4          8.0      0.0 2016-2017
## 4874       443.7       45.0          27.0         30.7      0.0 2016-2017
## 4875       466.2       40.9          25.0          7.8      0.0 2016-2017
## 4876       462.0       39.3          22.2         29.7      0.0 2016-2017
## 4877       465.1       39.3          22.7          8.1      0.0 2016-2017
## 4878       462.1       39.8          23.6          8.3      0.0 2016-2017
## 4879       456.6       40.2          22.5         29.7      0.0 2016-2017
## 4880       467.9       38.6          21.3         30.7      0.0 2016-2017
## 4881       462.4       44.5          28.4          8.1      0.0 2016-2017
## 4882       465.7       36.8          19.4          8.5      0.0 2016-2017
## 4883       469.1       43.9          27.1          8.1      0.0 2016-2017
## 4884       466.8       41.5          25.1         31.3      0.0 2016-2017
## 4885       466.1       41.9          25.4         30.2      0.0 2016-2017
## 4886       456.2       40.2          22.6          8.5      0.0 2016-2017
## 4887       458.4       43.9          26.6         32.1      0.0 2016-2017
## 4888       466.0       45.8          28.0          8.7      0.0 2016-2017
## 4889       465.8       43.3          25.9         30.5      0.0 2016-2017
## 4890       463.8       43.3          26.1         32.6      0.0 2016-2017
## 4891       457.0       48.4          31.7          7.7      0.0 2016-2017
## 4892       465.6       40.1          23.3         33.7      0.0 2016-2017
## 4893       450.3       49.9          32.6         52.0      0.0 2016-2017
## 4894       463.5       48.5          29.6          8.2      0.0 2016-2017
## 4895       478.3       43.4          27.5          7.9      0.0 2016-2017
## 4896       481.9       41.9          25.7          8.1      0.0 2016-2017
## 4897       473.7       47.7          29.8          8.8      0.0 2016-2017
## 4898       462.3       42.3          24.6         53.1      0.0 2016-2017
## 4899       466.6       41.8          25.3         31.4      0.0 2016-2017
## 4900       485.2       36.7          20.0          8.4      0.0 2016-2017
## 4901       468.3       39.3          22.7          8.3      0.0 2016-2017
## 4902       477.7       48.4          30.4          8.6      0.0 2016-2017
## 4903       459.2       47.2          29.5         30.6      0.0 2016-2017
## 4904       483.3       40.5          24.2          8.0      0.0 2016-2017
## 4905       468.6       43.4          25.6         54.7      0.0 2016-2017
## 4906       473.2       44.9          26.3         34.2      0.0 2016-2017
## 4907       478.6       42.3          25.8         31.1      0.0 2016-2017
## 4908       463.3       47.9          30.8         53.4      0.0 2016-2017
## 4909       462.5       40.6          22.0         32.4      0.0 2016-2017
## 4910       463.2       40.9          25.4         29.7      0.0 2016-2017
## 4911       469.7       42.2          25.0          8.4      0.0 2016-2017
## 4912       468.8       39.1          22.7         32.9      0.0 2016-2017
## 4913       476.1       45.4          28.1         32.1      0.0 2016-2017
## 4914       461.6       42.9          25.7         76.2      0.0 2016-2017
## 4915       500.3       40.5          23.3          8.6      0.0 2016-2017
## 4916       480.5       38.3          22.3          7.9      0.0 2016-2017
## 4917       476.4       40.2          22.3         31.7      0.0 2016-2017
## 4918       474.8       40.6          23.0         32.4      0.0 2016-2017
## 4919       469.6       50.8          34.1          8.4      0.0 2016-2017
## 4920       486.7       44.4          26.2          8.8      0.0 2016-2017
## 4921       468.9       47.3          29.5         52.0      0.0 2016-2017
## 4922       481.8       46.0          28.5         32.5      0.0 2016-2017
## 4923       479.5       38.9          21.0         31.9      0.0 2016-2017
## 4924       472.4       46.6          30.7         53.7      0.0 2016-2017
## 4925       476.5       40.5          23.3         32.0      0.0 2016-2017
## 4926       474.5       41.5          23.9         32.1      0.0 2016-2017
## 4927       477.4       40.2          23.4         55.1      0.0 2016-2017
## 4928       478.0       46.1          28.8         32.5      0.0 2016-2017
## 4929       481.7       39.2          22.8         31.8      0.0 2016-2017
## 4930       488.5       49.3          32.0         33.2      0.0 2016-2017
## 4931       501.4       42.6          23.8          9.0      0.0 2016-2017
## 4932       479.8       52.3          35.5         76.5      0.0 2016-2017
## 4933       492.7       42.5          23.7         34.5      0.0 2016-2017
## 4934       469.6       48.1          24.8         31.1      0.0 2016-2017
## 4935       501.4       43.6          25.5          8.6      0.0 2016-2017
## 4936       495.9       40.7          23.2          9.1      0.0 2016-2017
## 4937       478.3       46.4          28.1         34.9      0.0 2016-2017
## 4938       482.0       51.4          34.1         33.3      0.0 2016-2017
## 4939       485.3       41.4          24.3         31.6      0.0 2016-2017
## 4940       472.5       49.8          33.0         55.5      0.0 2016-2017
## 4941       477.7       40.8          22.9         32.7      0.0 2016-2017
## 4942       504.0       41.4          23.9          9.5      0.0 2016-2017
## 4943       488.0       45.2          26.6          9.2      0.0 2016-2017
## 4944       492.7       43.1          25.2          8.0      0.0 2016-2017
## 4945       494.5       41.9          24.2         34.5      0.0 2016-2017
## 4946       493.0       46.7          28.5          8.7      0.0 2016-2017
## 4947       486.6       45.5          26.9          8.8      0.0 2016-2017
## 4948       493.9       38.6          19.5         59.3      0.0 2016-2017
## 4949       494.7       44.9          26.3         55.0      0.0 2016-2017
## 4950       475.4       47.5          28.7         33.0      0.0 2016-2017
## 4951       487.6       43.4          25.6         56.2      0.0 2016-2017
## 4952       486.8       45.2          26.6          8.7      0.0 2016-2017
## 4953       510.2       41.0          24.0          8.3      0.0 2016-2017
## 4954       478.9       42.1          25.3         56.5      0.0 2016-2017
## 4955       484.4       46.5          27.8         34.0      0.0 2016-2017
## 4956       483.5       46.4          28.8         57.5      0.0 2016-2017
## 4957       488.9       47.8          30.2         83.1      0.0 2016-2017
## 4958       473.4       53.1          36.2          8.7      0.0 2016-2017
## 4959       480.0       40.6          23.0          8.4      0.0 2016-2017
## 4960       503.7       44.7          25.6          9.1      0.0 2016-2017
## 4961       493.4       48.1          31.4         57.6      0.0 2016-2017
## 4962       506.6       43.1          25.5         34.1      0.0 2016-2017
## 4963       504.7       46.8          29.5          8.7      0.0 2016-2017
## 4964       498.5       43.3          24.9         34.9      0.0 2016-2017
## 4965       507.5       44.9          25.6         35.9      0.0 2016-2017
## 4966       505.6       44.8          24.7          9.1      0.0 2016-2017
## 4967       517.5       43.2          25.9          8.9      0.0 2016-2017
## 4968       499.3       43.8          25.5         33.6      0.0 2016-2017
## 4969       483.7       46.1          29.0         59.7      0.0 2016-2017
## 4970       507.0       38.0          19.7         35.5      0.0 2016-2017
## 4971       513.9       46.8          28.9          9.3      0.0 2016-2017
## 4972       525.0       39.9          22.6         33.7      0.0 2016-2017
## 4973       504.8       44.0          25.8         34.1      0.0 2016-2017
## 4974       511.8       54.8          35.2         60.9      0.0 2016-2017
## 4975       524.1       51.5          32.9          8.9      0.0 2016-2017
## 4976       510.5       48.1          26.7         63.0      0.0 2016-2017
## 4977       525.1       46.1          27.7         59.5      0.0 2016-2017
## 4978       393.1       44.3          31.0         11.0      0.0 2016-2017
## 4979       394.8       43.8          27.9          8.5      0.0 2016-2017
## 4980       404.8       37.7          21.6          9.7      0.0 2016-2017
## 4981       401.9       38.5          21.6         34.0      0.0 2016-2017
## 4982       405.2       40.8          24.8         32.5      0.0 2016-2017
## 4983       413.8       44.6          29.8         32.5      0.0 2016-2017
## 4984       414.5       40.6          24.9         32.8      0.0 2016-2017
## 4985       400.0       41.2          26.6         32.2      0.0 2016-2017
## 4986       421.0       40.8          23.4          8.6      0.0 2016-2017
## 4987       422.3       38.6          22.1          9.4      0.0 2016-2017
## 4988       401.1       39.7          24.6         55.5      0.0 2016-2017
## 4989       416.4       37.5          20.2          8.3      0.0 2016-2017
## 4990       402.8       41.7          26.4         56.1      0.0 2016-2017
## 4991       403.3       39.7          21.9         55.4      0.0 2016-2017
## 4992       413.2       42.0          26.3         31.9      0.0 2016-2017
## 4993       410.9       44.7          27.9          8.7      0.0 2016-2017
## 4994       429.8       38.2          22.1          8.5      0.0 2016-2017
## 4995       435.5       39.5          21.9          8.7      0.0 2016-2017
## 4996       408.7       41.3          25.6         53.7      0.0 2016-2017
## 4997       415.1       42.4          24.8         32.0      0.0 2016-2017
## 4998       414.8       41.4          25.1          8.4      0.0 2016-2017
## 4999       410.4       38.7          20.9         55.5      0.0 2016-2017
## 5000       429.2       43.4          27.6         31.8      0.0 2016-2017
## 5001       434.5       37.2          20.4         33.3      0.0 2016-2017
## 5002       426.7       37.7          20.0         32.3      0.0 2016-2017
## 5003       418.6       41.0          23.9         54.8      0.0 2016-2017
## 5004       441.2       44.8          27.2         33.7      0.0 2016-2017
## 5005       449.4       38.9          21.8          9.3      0.0 2016-2017
## 5006       476.0       45.2          25.3         38.3      0.0 2016-2017
## 5007       417.7       51.4          33.8         53.8      0.0 2016-2017
## 5008       338.6       39.4          24.1          8.3      0.0 2016-2017
## 5009       341.8       38.1          21.0         30.3      0.0 2016-2017
## 5010       342.0       37.2          20.6         31.2      0.0 2016-2017
## 5011       339.3       39.9          24.4          9.2      0.0 2016-2017
## 5012       328.7       44.8          28.4         29.1      0.0 2016-2017
## 5013       333.7       38.9          22.0         31.1      0.0 2016-2017
## 5014       333.1       37.6          19.3         31.2      0.0 2016-2017
## 5015       342.7       42.1          24.5         33.0      0.0 2016-2017
## 5016       335.8       38.5          22.0         31.0      0.0 2016-2017
## 5017       332.2       42.5          25.7         30.5      0.0 2016-2017
## 5018       329.9       41.0          23.7         30.4      0.0 2016-2017
## 5019       339.5       45.1          27.0          8.7      0.0 2016-2017
## 5020       339.8       44.7          28.4          8.4      0.0 2016-2017
## 5021       331.8       40.9          25.3         52.3      0.0 2016-2017
## 5022       337.9       42.0          25.6          8.5      0.0 2016-2017
## 5023       332.5       41.2          21.3         33.4      0.0 2016-2017
## 5024       341.2       42.3          24.7         33.1      0.0 2016-2017
## 5025       334.0       47.8          32.6         31.4      0.0 2016-2017
## 5026       349.2       39.7          21.9          9.3      0.0 2016-2017
## 5027       342.7       42.5          26.5          8.5      0.0 2016-2017
## 5028       339.2       39.4          22.7         11.4      0.0 2016-2017
## 5029       338.9       42.4          25.5         32.1      0.0 2016-2017
## 5030       335.9       43.1          26.1          9.0      0.0 2016-2017
## 5031       335.9       40.8          21.7         59.1      0.0 2016-2017
## 5032       348.6       47.7          30.5         31.7      0.0 2016-2017
## 5033       339.6       41.5          22.7         56.7      0.0 2016-2017
## 5034       340.0       40.8          23.1         33.1      0.0 2016-2017
## 5035       333.6       41.6          25.6         56.4      0.0 2016-2017
## 5036       334.8       43.2          26.8          9.2      0.0 2016-2017
## 5037       336.8       38.1          20.5          9.0      0.0 2016-2017
## 5038       337.5       42.7          25.5         34.0      0.0 2016-2017
## 5039       339.6       42.6          26.8         32.9      0.0 2016-2017
## 5040       343.0       46.2          27.2         32.3      0.0 2016-2017
## 5041       358.7       62.7          44.8         32.4      0.0 2016-2017
## 5042       329.1       38.8          22.8         33.2      0.0 2016-2017
## 5043       331.8       36.8          21.1         32.8      0.0 2016-2017
## 5044       342.0       38.1          21.7         33.4      0.0 2016-2017
## 5045       340.1       43.3          25.3         57.4      0.0 2016-2017
## 5046       340.5       44.8          24.8         34.9      0.0 2016-2017
## 5047       336.8       43.5          25.4         80.5      0.0 2016-2017
## 5048       340.6       41.4          22.4         57.0      0.0 2016-2017
## 5049       338.7       44.9          25.8         58.9      0.0 2016-2017
## 5050       355.1       45.2          27.2          8.6      0.0 2016-2017
## 5051       344.9       41.7          24.3         60.6      0.0 2016-2017
## 5052       345.6       40.7          25.5         33.5      0.0 2016-2017
## 5053       348.0       38.4          21.0         33.2      0.0 2016-2017
## 5054       332.6       43.8          24.7         61.8      0.0 2016-2017
## 5055       350.7       46.5          34.2         35.4      0.0 2016-2017
## 5056       343.7       45.4          28.7         31.5      0.0 2016-2017
## 5057       362.7       38.8          21.9          9.2      0.0 2016-2017
## 5058       371.2       34.6          17.7         34.5      0.0 2016-2017
## 5059       368.7       36.4          19.1          8.8      0.0 2016-2017
## 5060       342.4       46.5          29.0         57.9      0.0 2016-2017
## 5061       358.1       43.6          25.6          8.8      0.0 2016-2017
## 5062       357.3       49.7          31.2         57.7      0.0 2016-2017
## 5063       356.3       37.6          20.5         57.2      0.0 2016-2017
## 5064       433.6       40.9          23.0          5.3      0.0 2016-2017
## 5065       441.1       40.0          22.0          5.3      0.0 2016-2017
## 5066       440.3       40.9          23.0          5.0      0.0 2016-2017
## 5067       437.5       48.6          31.0          5.4      0.0 2016-2017
## 5068       439.2       37.6          20.0          5.1      0.0 2016-2017
## 5069       439.7       45.2          24.0          5.2      0.0 2016-2017
## 5070       445.8       36.8          20.0          4.9      0.0 2016-2017
## 5071       440.7       44.3          27.0          5.7      0.0 2016-2017
## 5072       445.4       45.0          27.0          4.9      0.0 2016-2017
## 5073       438.1       38.3          21.0          5.0      0.0 2016-2017
## 5074       440.5       39.0          19.0         26.5      0.0 2016-2017
## 5075       455.9       42.2          24.0          5.3      0.0 2016-2017
## 5076       450.9       44.3          26.0          6.0      0.0 2016-2017
## 5077       461.2       44.1          23.0          5.3      0.0 2016-2017
## 5078       445.9       48.6          32.0         27.5      0.0 2016-2017
## 5079       454.4       40.5          22.0          4.7      0.0 2016-2017
## 5080       446.7       45.5          28.0         27.8      0.0 2016-2017
## 5081       452.7       45.0          25.0          5.1      0.0 2016-2017
## 5082       448.1       45.0          26.0          5.2      0.0 2016-2017
## 5083       451.5       46.7          29.0          5.0      0.0 2016-2017
## 5084       433.0       45.6          28.0         73.1      0.0 2016-2017
## 5085       455.2       46.6          29.0          5.4      0.0 2016-2017
## 5086       461.1       47.0          26.0          5.2      0.0 2016-2017
## 5087       444.7       45.3          25.0         28.9      0.0 2016-2017
## 5088       440.2       44.5          27.0         28.3      0.0 2016-2017
## 5089       445.7       51.2          33.0          5.2      0.0 2016-2017
## 5090       446.3       41.8          23.0         27.0      0.0 2016-2017
## 5091       452.5       49.5          31.0         29.1      0.0 2016-2017
## 5092       445.7       43.3          24.0          5.5      0.0 2016-2017
## 5093       448.8       49.4          31.0         28.1      0.0 2016-2017
## 5094       456.7       41.5          24.0          5.1      0.0 2016-2017
## 5095       471.2       38.9          21.0          5.2      0.0 2016-2017
## 5096       458.8       44.1          25.0          5.3      0.0 2016-2017
## 5097       460.2       44.5          26.0         27.6      0.0 2016-2017
## 5098       457.3       48.7          29.0          5.3      0.0 2016-2017
## 5099       453.2       41.0          23.0         27.8      0.0 2016-2017
## 5100       461.4       46.9          28.0          5.9      0.0 2016-2017
## 5101       448.3       47.5          31.0         52.1      0.0 2016-2017
## 5102       450.8       43.3          25.0         27.7      0.0 2016-2017
## 5103       449.3       42.5          24.0          5.7      0.0 2016-2017
## 5104       444.0       49.3          30.0         52.5      0.0 2016-2017
## 5105       444.5       39.5          23.0         25.7      0.0 2016-2017
## 5106       468.2       45.7          26.0          5.1      0.0 2016-2017
## 5107       451.6       42.5          24.0         29.4      0.0 2016-2017
## 5108       452.2       45.0          26.0         51.4      0.0 2016-2017
## 5109       440.8       46.2          27.0         51.7      0.0 2016-2017
## 5110       438.9       40.6          21.0         27.8      0.0 2016-2017
## 5111       452.3       42.5          25.0         28.7      0.0 2016-2017
## 5112       456.4       47.8          28.0         50.9      0.0 2016-2017
## 5113       450.2       45.0          25.0          5.5      0.0 2016-2017
## 5114       459.7       47.6          30.0          5.4      0.0 2016-2017
## 5115       455.5       46.9          32.0         28.2      0.0 2016-2017
## 5116       449.7       46.1          28.0         26.6      0.0 2016-2017
## 5117       472.8       49.5          30.0          5.2      0.0 2016-2017
## 5118       464.5       43.9          25.0         54.1      0.0 2016-2017
## 5119       452.7       50.7          30.0          5.4      0.0 2016-2017
## 5120       466.4       39.6          22.0          4.8      0.0 2016-2017
## 5121       455.7       46.2          27.0         29.6      0.0 2016-2017
## 5122       452.5       46.6          27.0         49.1      0.0 2016-2017
## 5123       448.0       48.9          30.0         52.2      0.0 2016-2017
## 5124       443.8       45.8          26.0         51.4      0.0 2016-2017
## 5125       457.6       46.1          29.0         51.0      0.0 2016-2017
## 5126       460.5       46.7          26.0         28.7      0.0 2016-2017
## 5127       465.4       43.3          24.0         29.0      0.0 2016-2017
## 5128       453.8       49.0          32.0         27.6      0.0 2016-2017
## 5129       467.0       45.7          25.0          5.7      0.0 2016-2017
## 5130       468.5       58.5          41.0         28.2      0.0 2016-2017
## 5131       465.6       47.2          27.0         28.8      0.0 2016-2017
## 5132       449.3       48.5          30.0         53.0      0.0 2016-2017
## 5133       445.1       48.0          29.0         98.3      0.0 2016-2017
## 5134       458.3       50.1          31.0         28.3      0.0 2016-2017
## 5135       471.2       42.1          23.0         30.6      0.0 2016-2017
## 5136       476.0       47.8          28.0          6.3      0.0 2016-2017
## 5137       463.2       46.4          30.0         51.6      0.0 2016-2017
## 5138       471.4       48.8          29.0          5.9      0.0 2016-2017
## 5139       455.0       45.6          26.0         28.2      0.0 2016-2017
## 5140       483.7       44.3          25.0         28.7      0.0 2016-2017
## 5141       460.2       55.7          36.0         50.6      0.0 2016-2017
## 5142       474.5       42.9          24.0         28.0      0.0 2016-2017
## 5143       475.2       52.9          32.0         57.5      0.0 2016-2017
## 5144       462.0       45.0          27.0         55.4      0.0 2016-2017
## 5145       486.0       40.0          22.0          5.1      0.0 2016-2017
## 5146       478.7       43.0          23.0         28.6      0.0 2016-2017
## 5147       471.4       46.0          26.0         30.5      0.0 2016-2017
## 5148       478.4       46.6          28.0          5.2      0.0 2016-2017
## 5149       478.9       50.0          31.0         29.8      0.0 2016-2017
## 5150       481.3       46.3          27.0         30.0      0.0 2016-2017
## 5151       489.3       35.3          19.0          5.0      0.0 2016-2017
## 5152       451.1       45.7          26.0         77.0      0.0 2016-2017
## 5153       463.6       46.9          28.0         28.4      0.0 2016-2017
## 5154       478.6       54.5          35.0          5.8      0.0 2016-2017
## 5155       485.8       48.2          29.0          5.5      0.0 2016-2017
## 5156       482.0       44.8          25.0         29.3      0.0 2016-2017
## 5157       465.9       54.7          35.0         81.1      0.0 2016-2017
## 5158       481.6       46.3          26.0          5.6      0.0 2016-2017
## 5159       476.2       45.6          26.0          5.8      0.0 2016-2017
## 5160       476.4       46.6          26.0         53.0      0.0 2016-2017
## 5161       485.6       51.1          32.0         30.4      0.0 2016-2017
## 5162       468.7       45.0          25.0         29.9      0.0 2016-2017
## 5163       479.2       45.9          26.0         56.8      0.0 2016-2017
## 5164       480.8       51.0          31.0         53.6      0.0 2016-2017
## 5165       486.0       47.2          27.0         55.5      0.0 2016-2017
## 5166       486.4       46.4          29.0         30.3      0.0 2016-2017
## 5167       477.2       56.6          35.0         55.5      0.0 2016-2017
## 5168       326.7       36.5          22.0          7.1      0.0 2016-2017
## 5169       323.2       44.7          27.0          6.7      0.0 2016-2017
## 5170       327.7       38.9          27.0         28.3      0.0 2016-2017
## 5171       324.1       38.4          21.0         48.6      0.0 2016-2017
## 5172       326.5       43.5          26.0          5.1      0.0 2016-2017
## 5173       334.3       39.9          24.0          5.2      0.0 2016-2017
## 5174       344.1       40.6          24.0         28.4      0.0 2016-2017
## 5175       336.5       45.6          30.0         28.1      0.0 2016-2017
## 5176       330.1       43.6          21.0          4.7      0.0 2016-2017
## 5177       337.1       44.5          28.0          5.0      0.0 2016-2017
## 5178       345.1       39.6          24.0         28.5      0.0 2016-2017
## 5179       337.9       41.5          23.0          5.3      0.0 2016-2017
## 5180       335.0       38.3          24.0          4.9      0.0 2016-2017
## 5181       328.8       39.7          22.0          5.0      0.0 2016-2017
## 5182       337.2       45.3          28.0         27.1      0.0 2016-2017
## 5183       334.6       38.8          21.0         27.5      0.0 2016-2017
## 5184       328.2       50.9          35.0          5.3      0.0 2016-2017
## 5185       335.2       48.3          31.0          5.0      0.0 2016-2017
## 5186       336.8       43.8          27.0         50.6      0.0 2016-2017
## 5187       334.0       39.3          22.0         50.4      0.0 2016-2017
## 5188       326.6       41.7          25.0         26.9      0.0 2016-2017
## 5189       337.6       46.6          31.0         49.4      0.0 2016-2017
## 5190       328.0       40.3          20.0          6.5      0.0 2016-2017
## 5191       336.7       52.0          23.0         27.7      0.0 2016-2017
## 5192       333.6       44.9          28.0         27.5      0.0 2016-2017
## 5193       333.9       42.9          27.0          6.7      0.0 2016-2017
## 5194       327.7       38.8          28.0         29.1      0.0 2016-2017
## 5195       325.2       41.5          26.0         27.1      0.0 2016-2017
## 5196       336.3       40.8          25.0          5.3      0.0 2016-2017
## 5197       337.8       42.1          22.0         28.5      0.0 2016-2017
## 5198       338.6       43.0          26.0          6.5      0.0 2016-2017
## 5199       321.4       44.9          26.0         50.6      0.0 2016-2017
## 5200       331.4       46.4          27.0         53.3      0.0 2016-2017
## 5201       323.4       43.7          27.0         53.0      0.0 2016-2017
## 5202       331.9       42.7          24.0         28.4      0.0 2016-2017
## 5203       337.6       43.3          26.0         28.6      0.0 2016-2017
## 5204       350.1       48.1          31.0          6.5      0.0 2016-2017
## 5205       340.7       50.0          31.0         27.9      0.0 2016-2017
## 5206       347.4       41.3          23.0          5.6      0.0 2016-2017
## 5207       344.8       40.1          22.0          5.0      0.0 2016-2017
## 5208       347.1       41.5          24.0         29.6      0.0 2016-2017
## 5209       335.4       47.3          29.0         72.6      0.0 2016-2017
## 5210       340.3       45.6          32.0          5.5      0.0 2016-2017
## 5211       347.1       42.1          23.0          5.8      0.0 2016-2017
## 5212       351.8       39.8          25.0          5.8      0.0 2016-2017
## 5213       349.9       46.9          28.0         53.1      0.0 2016-2017
## 5214       350.1       47.2          29.0         28.6      0.0 2016-2017
## 5215       349.9       44.7          26.0         54.6      0.0 2016-2017
## 5216       356.3       44.4          30.0          5.8      0.0 2016-2017
## 5217       349.6       41.1          22.0          5.3      0.0 2016-2017
## 5218       342.8       46.3          27.0          5.5      0.0 2016-2017
## 5219       355.7       39.7          22.0         28.8      0.0 2016-2017
## 5220       368.3       49.2          30.0          5.3      0.0 2016-2017
## 5221       337.9       47.7          37.0         52.5      0.0 2016-2017
## 5222       338.1       46.9          29.0         51.9      0.0 2016-2017
## 5223       352.4       41.1          23.0         30.0      0.0 2016-2017
## 5224       344.8       45.8          27.0         29.2      0.0 2016-2017
## 5225       348.7       51.4          33.0         82.0      0.0 2016-2017
## 5226       450.3       42.2          22.0          7.5      0.0 2016-2017
## 5227       456.1       46.6          24.6          8.2      0.0 2016-2017
## 5228       450.4       49.0          28.0         28.8      0.0 2016-2017
## 5229       462.6       48.1          27.6          8.6      0.0 2016-2017
## 5230       454.5       45.9          25.4         30.7      0.0 2016-2017
## 5231       452.0       45.9          27.6          7.1      0.0 2016-2017
## 5232       465.7       44.8          24.2          8.4      0.0 2016-2017
## 5233       463.9       49.8          29.7         49.1      0.0 2016-2017
## 5234       450.0       45.6          29.3         52.6      0.0 2016-2017
## 5235       474.0       45.3          23.1          8.1      0.0 2016-2017
## 5236       457.7       54.0          33.3         28.1      0.0 2016-2017
## 5237       460.9       49.9          30.5         27.1      0.0 2016-2017
## 5238       464.9       50.0          29.2         31.1      0.0 2016-2017
## 5239       473.0       47.5          25.9          8.2      0.0 2016-2017
## 5240       452.7       54.5          33.2         29.4      0.0 2016-2017
## 5241       452.0       49.6          29.4         29.1      0.0 2016-2017
## 5242       471.5       50.0          29.6         29.1      0.0 2016-2017
## 5243       468.3       44.4          23.2         30.4      0.0 2016-2017
## 5244       478.5       50.8          30.1          7.8      0.0 2016-2017
## 5245       451.3       47.4          27.9         30.0      0.0 2016-2017
## 5246       480.0       45.3          24.6          8.4      0.0 2016-2017
## 5247       463.4       45.3          27.0         29.8      0.0 2016-2017
## 5248       456.9       47.6          27.1         50.8      0.0 2016-2017
## 5249       469.0       49.9          29.3          8.0      0.0 2016-2017
## 5250       460.1       55.4          35.4         28.8      0.0 2016-2017
## 5251       462.4       41.2          22.5         50.9      0.0 2016-2017
## 5252       462.5       49.1          27.5         29.6      0.0 2016-2017
## 5253       474.7       48.0          27.4         29.5      0.0 2016-2017
## 5254       457.5       51.8          32.1         29.6      0.0 2016-2017
## 5255       475.2       50.1          27.5          9.3      0.0 2016-2017
## 5256       462.1       49.0          28.9         73.6      0.0 2016-2017
## 5257       455.0       47.8          26.6         29.5      0.0 2016-2017
## 5258       472.3       56.8          36.2         30.6      0.0 2016-2017
## 5259       463.4       48.7          25.4         50.4      0.0 2016-2017
## 5260       461.8       57.3          36.6         52.6      0.0 2016-2017
## 5261       471.7       62.0          41.4         30.5      0.0 2016-2017
## 5262       467.3       46.2          25.0         32.2      0.0 2016-2017
## 5263       463.5       53.8          32.6         76.3      0.0 2016-2017
## 5264       487.8       49.9          28.9          8.0      0.0 2016-2017
## 5265       469.1       49.9          28.9         29.7      0.0 2016-2017
## 5266       483.6       45.3          24.8         32.7      0.0 2016-2017
## 5267       452.5       49.9          29.3         74.8      0.0 2016-2017
## 5268       459.0       50.1          27.2         30.1      0.0 2016-2017
## 5269       467.3       48.5          27.5         30.2      0.0 2016-2017
## 5270       471.4       48.0          26.8          8.7      0.0 2016-2017
## 5271       461.2       48.8          27.6         30.6      0.0 2016-2017
## 5272       471.1       46.6          26.9         53.0      0.0 2016-2017
## 5273       456.1       57.0          34.3         54.6      0.0 2016-2017
## 5274       468.6       50.5          29.0         29.5      0.0 2016-2017
## 5275       467.4       50.2          28.9         51.5      0.0 2016-2017
## 5276       467.1       52.7          31.8         77.6      0.0 2016-2017
## 5277       479.4       49.3          28.3         29.7      0.0 2016-2017
## 5278       478.1       51.4          28.9          8.4      0.0 2016-2017
## 5279       473.2       49.8          27.0         54.5      0.0 2016-2017
## 5280       482.4       53.2          31.6         29.5      0.0 2016-2017
## 5281       479.7       45.9          24.0          8.5      0.0 2016-2017
## 5282       485.0       51.6          29.7         30.7      0.0 2016-2017
## 5283       466.9       51.8          29.9         32.2      0.0 2016-2017
## 5284       496.2       50.9          28.3         31.5      0.0 2016-2017
## 5285       469.9       45.3          24.1         31.5      0.0 2016-2017
## 5286       468.3       48.1          26.8         74.5      0.0 2016-2017
## 5287       494.5       47.7          25.2          8.5      0.0 2016-2017
## 5288       495.6       48.2          28.0          8.9      0.0 2016-2017
## 5289       469.2       51.7          30.5         52.9      0.0 2016-2017
## 5290       462.0       54.9          34.7         55.0      0.0 2016-2017
## 5291       477.1       50.3          27.6         54.8      0.0 2016-2017
## 5292       495.2       49.6          27.9         32.7      0.0 2016-2017
## 5293       485.4       55.2          31.8         53.2      0.0 2016-2017
## 5294       497.2       48.5          25.5          9.2      0.0 2016-2017
## 5295       480.5       54.9          31.9         56.5      0.0 2016-2017
## 5296       491.1       49.4          28.1         32.1      0.0 2016-2017
## 5297       481.6       50.5          27.4          8.8      0.0 2016-2017
## 5298       476.8       46.8          25.7         31.0      0.0 2016-2017
## 5299       479.1       50.6          26.4         55.2      0.0 2016-2017
## 5300       489.9       47.0          23.6          8.9      0.0 2016-2017
## 5301       497.0       47.3          29.1         31.2      0.0 2016-2017
## 5302       483.3       47.5          25.3         32.1      0.0 2016-2017
## 5303       491.9       58.9          35.9         30.6      0.0 2016-2017
## 5304       488.0       51.5          29.9          8.3      0.0 2016-2017
## 5305       490.9       46.0          25.2         32.1      0.0 2016-2017
## 5306       486.8       47.9          24.6         56.2      0.0 2016-2017
## 5307       491.5       44.6          21.7         31.5      0.0 2016-2017
## 5308       478.7       56.5          35.6         57.9      0.0 2016-2017
## 5309       484.0       55.1          34.5         30.2      0.0 2016-2017
## 5310       496.6       47.6          25.5          8.7      0.0 2016-2017
## 5311       480.4       52.8          30.5         54.3      0.0 2016-2017
## 5312       516.0       49.7          25.3          9.2      0.0 2016-2017
## 5313       504.5       45.4          23.1         55.7      0.0 2016-2017
## 5314       491.7       48.6          26.5         79.1      0.0 2016-2017
## 5315       488.2       50.6          29.9         31.7      0.0 2016-2017
## 5316       487.9       61.9          40.4         54.6      0.0 2016-2017
## 5317       484.8       48.4          22.9         32.4      0.0 2016-2017
## 5318       478.3       54.1          32.5         53.4      0.0 2016-2017
## 5319       506.0       56.6          34.8         53.8      0.0 2016-2017
## 5320       479.5       55.4          31.4         31.8      0.0 2016-2017
## 5321       499.3       51.7          27.8         57.0      0.0 2016-2017
## 5322       490.3       47.4          24.1         32.9      0.0 2016-2017
## 5323       510.5       46.9          23.7         34.6      0.0 2016-2017
## 5324       512.8       55.2          31.1         56.7      0.0 2016-2017
## 5325       494.0       53.1          31.3         32.9      0.0 2016-2017
## 5326       495.4       45.5          23.6         58.1      0.0 2016-2017
## 5327       509.3       54.8          31.7         57.9      0.0 2016-2017
## 5328       333.1       42.1            NA         10.5      0.0 2016-2017
## 5329       340.9       39.4            NA          8.7      0.0 2016-2017
## 5330       338.5       40.8            NA         31.3      0.0 2016-2017
## 5331       341.7       41.3            NA         52.2      0.0 2016-2017
## 5332       341.2       44.0            NA          9.1      0.0 2016-2017
## 5333       341.9       43.7            NA          8.0      0.0 2016-2017
## 5334       350.0       49.8            NA         51.1      0.0 2016-2017
## 5335       337.5       43.5            NA         29.5      0.0 2016-2017
## 5336       345.8       47.1            NA          8.8      0.0 2016-2017
## 5337       340.4       47.4            NA         49.9      0.0 2016-2017
## 5338       347.9       44.7            NA          8.4      0.0 2016-2017
## 5339       337.8       42.8            NA         29.5      0.0 2016-2017
## 5340       341.2       42.6            NA         30.0      0.0 2016-2017
## 5341       342.2       47.9            NA          8.1      0.0 2016-2017
## 5342       342.4       44.8            NA          8.8      0.0 2016-2017
## 5343       348.6       43.1            NA         50.1      0.0 2016-2017
## 5344       340.8       56.8            NA          8.5      0.0 2016-2017
## 5345       354.9       47.9            NA          8.9      0.0 2016-2017
## 5346       338.3       51.7            NA         49.8      0.0 2016-2017
## 5347       353.7       42.8            NA          7.7      0.0 2016-2017
## 5348       347.4       45.6            NA         52.0      0.0 2016-2017
## 5349       351.3       43.8            NA          7.7      0.0 2016-2017
## 5350       345.5       46.4            NA         30.0      0.0 2016-2017
## 5351       347.2       48.0            NA         29.8      0.0 2016-2017
## 5352       344.9       42.6            NA          8.5      0.0 2016-2017
## 5353       343.8       47.6            NA         30.4      0.0 2016-2017
## 5354       352.1       45.2            NA         29.2      0.0 2016-2017
## 5355       350.2       46.3            NA         30.0      0.0 2016-2017
## 5356       340.6       50.0            NA         51.8      0.0 2016-2017
## 5357       349.6       43.3            NA         51.4      0.0 2016-2017
## 5358       352.7       47.6            NA         10.4      0.0 2016-2017
## 5359       358.3       49.7            NA          9.4      0.0 2016-2017
## 5360       361.1       42.1            NA         33.4      0.0 2016-2017
## 5361       355.9       47.8            NA         31.9      0.0 2016-2017
## 5362       353.7       46.9            NA          8.9      0.0 2016-2017
## 5363       351.2       45.1            NA         53.8      0.0 2016-2017
## 5364       351.5       43.3            NA         81.2      0.0 2016-2017
## 5365       358.7       47.1            NA         30.6      0.0 2016-2017
## 5366       356.0       44.9            NA         31.1      0.0 2016-2017
## 5367       350.3       51.0            NA         53.5      0.0 2016-2017
## 5368       362.2       47.6            NA         54.6      0.0 2016-2017
## 5369       360.3       45.0            NA          8.9      0.0 2016-2017
## 5370       333.1       39.4            NA          7.7      0.0 2016-2017
## 5371       370.6       47.5            NA          8.6      0.0 2016-2017
## 5372       364.8       46.2            NA          8.8      0.0 2016-2017
## 5373       360.3       48.6            NA         30.5      0.0 2016-2017
## 5374       342.6       47.1            NA         75.0      0.0 2016-2017
## 5375       362.2       49.3            NA          9.0      0.0 2016-2017
## 5376       364.2       48.6            NA         54.8      0.0 2016-2017
## 5377       353.4       58.2            NA         55.4      0.0 2016-2017
## 5378       362.9       45.0            NA         30.2      0.0 2016-2017
## 5379       357.3       52.1            NA         30.6      0.0 2016-2017
## 5380       356.2       42.9            NA          8.5      0.0 2016-2017
## 5381       363.1       49.0            NA         31.8      0.0 2016-2017
## 5382       365.0       53.2            NA         32.3      0.0 2016-2017
## 5383       360.6       54.5            NA         80.8      0.0 2016-2017
## 5384       369.5       50.1            NA         30.8      0.0 2016-2017
## 5385       357.0       47.2            NA         54.4      0.0 2016-2017
## 5386       425.4       43.9          24.0          4.3      0.0 2016-2017
## 5387       434.3       42.2          23.0          4.0      0.0 2016-2017
## 5388       431.6       46.6          24.0          4.6      0.0 2016-2017
## 5389       438.6       46.8          28.0          4.4      0.0 2016-2017
## 5390       434.2       42.6          23.0         25.8      0.0 2016-2017
## 5391       442.0       39.3          21.0          4.0      0.0 2016-2017
## 5392       441.3       44.5          23.0          4.5      0.0 2016-2017
## 5393       426.8       42.3          23.0         25.7      0.0 2016-2017
## 5394       434.6       50.6          28.0         26.9      0.0 2016-2017
## 5395       448.4       43.1          23.0          4.5      0.0 2016-2017
## 5396       439.4       46.9          28.0          4.5      0.0 2016-2017
## 5397       435.5       50.7          31.0         24.5      0.0 2016-2017
## 5398       443.2       53.8          32.0          4.4      0.0 2016-2017
## 5399       432.2       47.5          26.0         27.1      0.0 2016-2017
## 5400       444.7       52.1          29.0          4.2      0.0 2016-2017
## 5401       444.6       52.1          30.0          4.3      0.0 2016-2017
## 5402       442.0       50.3          28.0         26.3      0.0 2016-2017
## 5403       437.4       46.9          25.0         25.4      0.0 2016-2017
## 5404       439.6       42.7          23.0         26.1      0.0 2016-2017
## 5405       428.0       48.8          29.0         63.3      0.0 2016-2017
## 5406       442.4       51.0          32.0         25.4      0.0 2016-2017
## 5407       432.4       48.1          26.0         25.5      0.0 2016-2017
## 5408       442.3       46.5          26.0          4.6      0.0 2016-2017
## 5409       434.1       42.5          23.0         25.0      0.0 2016-2017
## 5410       441.9       50.4          30.0         25.6      0.0 2016-2017
## 5411       434.8       40.4          19.0         27.7      0.0 2016-2017
## 5412       426.2       44.2          25.0         26.0      0.0 2016-2017
## 5413       435.6       48.2          28.0         25.6      0.0 2016-2017
## 5414       443.7       46.5          27.0         24.9      0.0 2016-2017
## 5415       441.7       48.4          35.0         26.5      0.0 2016-2017
## 5416       443.2       47.4          26.0         26.2      0.0 2016-2017
## 5417       454.8       46.8          24.0          4.4      0.0 2016-2017
## 5418       434.3       47.6          27.0         46.8      0.0 2016-2017
## 5419       441.1       48.8          29.0          4.1      0.0 2016-2017
## 5420       442.9       51.2          28.0         26.5      0.0 2016-2017
## 5421       430.8       51.1          29.0         25.7      0.0 2016-2017
## 5422       445.8       51.0          28.0          5.0      0.0 2016-2017
## 5423       447.2       57.3          38.0          4.2      0.0 2016-2017
## 5424       441.2       51.0          31.0          4.5      0.0 2016-2017
## 5425       449.3       44.8          24.0          4.7      0.0 2016-2017
## 5426       431.6       48.4          29.0         49.3      0.0 2016-2017
## 5427       453.5       48.8          25.0          4.6      0.0 2016-2017
## 5428       421.0       48.3          28.0         46.5      0.0 2016-2017
## 5429       455.9       49.0          26.0          5.0      0.0 2016-2017
## 5430       451.2       48.2          26.0         26.6      0.0 2016-2017
## 5431       447.3       50.1          30.0         24.8      0.0 2016-2017
## 5432       446.3       46.8          24.0         26.8      0.0 2016-2017
## 5433       436.9       46.7          24.0         47.6      0.0 2016-2017
## 5434       441.5       45.6          25.0         26.8      0.0 2016-2017
## 5435       454.0       44.8          22.0          4.6      0.0 2016-2017
## 5436       447.4       50.6          29.0          4.6      0.0 2016-2017
## 5437       438.7       45.6          24.0         26.4      0.0 2016-2017
## 5438       432.3       47.6          26.0          4.6      0.0 2016-2017
## 5439       431.4       49.1          28.0         71.9      0.0 2016-2017
## 5440       442.5       49.0          28.0         44.7      0.0 2016-2017
## 5441       442.3       56.1          35.0         26.5      0.0 2016-2017
## 5442       442.7       52.4          29.0         52.4      0.0 2016-2017
## 5443       449.9       46.7          27.0         27.3      0.0 2016-2017
## 5444       442.4       42.2          22.0          4.6      0.0 2016-2017
## 5445       454.4       48.9          29.0         27.2      0.0 2016-2017
## 5446       447.6       65.4          43.0          4.7      0.0 2016-2017
## 5447       455.0       54.6          36.0         27.0      0.0 2016-2017
## 5448       456.2       56.4          36.0         26.3      0.0 2016-2017
## 5449       453.8       47.9          28.0         25.7      0.0 2016-2017
## 5450       437.8       40.7          20.0         25.4      0.0 2016-2017
## 5451       454.3       51.3          31.0         26.5      0.0 2016-2017
## 5452       456.1       40.9          22.0         50.4      0.0 2016-2017
## 5453       455.4       47.0          27.0         28.6      0.0 2016-2017
## 5454       462.7       50.6          28.0          5.0      0.0 2016-2017
## 5455       442.7       46.3          26.0         26.3      0.0 2016-2017
## 5456       454.3       47.0          25.0         27.7      0.0 2016-2017
## 5457       445.3       55.4          34.0         49.8      0.0 2016-2017
## 5458       437.0       53.0          33.0        102.0      0.0 2016-2017
## 5459       439.0       48.9          29.0         52.2      0.0 2016-2017
## 5460       448.9       48.9          30.0         49.7      0.0 2016-2017
## 5461       455.6       52.0          31.0         28.5      0.0 2016-2017
## 5462       462.7       50.9          29.0         50.1      0.0 2016-2017
## 5463       466.8       41.2          19.0         28.1      0.0 2016-2017
## 5464       453.9       53.9          32.0         53.0      0.0 2016-2017
## 5465       449.2       57.2          35.0         26.3      0.0 2016-2017
## 5466       448.6       54.1          31.0         50.9      0.0 2016-2017
## 5467       454.0       52.8          30.0         27.5      0.0 2016-2017
## 5468       442.2       61.9          48.0         25.3      0.0 2016-2017
## 5469       452.2       53.5          29.0         73.5      0.0 2016-2017
## 5470       454.8       48.8          27.0         50.5      0.0 2016-2017
## 5471       453.0       49.8          29.0         27.9      0.0 2016-2017
## 5472       459.0       46.0          26.0          4.5      0.0 2016-2017
## 5473       459.6       49.4          25.0         28.6      0.0 2016-2017
## 5474       461.9       48.8          28.0          4.6      0.0 2016-2017
## 5475       463.9       55.1          34.0         52.0      0.0 2016-2017
## 5476       454.7       52.3          28.0         28.5      0.0 2016-2017
## 5477       455.4       66.7          54.0         72.4      0.0 2016-2017
## 5478       464.5       43.9          25.0          4.2      0.0 2016-2017
## 5479       487.2       51.4          28.0         28.7      0.0 2016-2017
## 5480       478.0       51.4          31.0         51.6      0.0 2016-2017
## 5481       443.8       58.7          39.0         74.0      0.0 2016-2017
## 5482       474.6       52.0          29.0         50.0      0.0 2016-2017
## 5483       457.4       45.7          22.0         51.2      0.0 2016-2017
## 5484       482.0       55.1          32.0         54.0      0.0 2016-2017
## 5485       470.7       54.1          32.0        100.8      0.0 2016-2017
## 5486       459.0       55.3          34.0         97.6      0.0 2016-2017
## 5487       480.0       49.7          25.0         54.7      0.0 2016-2017
## 5488       472.5       51.2          29.0         52.8      0.0 2016-2017
## 5489       475.8       49.7          27.0         54.3      0.0 2016-2017
## 5490       492.5       54.1          32.0         28.2      0.0 2016-2017
## 5491       468.6       50.9          28.0         52.6      0.0 2016-2017
## 5492       469.1       59.5          33.0         75.0      0.0 2016-2017
## 5493       347.1       47.0          27.0          6.0      0.0 2016-2017
## 5494       353.8       56.1          34.0          5.0      0.0 2016-2017
## 5495       356.3       44.3          24.0          6.1      0.0 2016-2017
## 5496       346.9       52.8          27.0         22.4      0.0 2016-2017
## 5497       351.4       48.8          27.0         25.0      0.0 2016-2017
## 5498       351.8       51.2          29.0          4.0      0.0 2016-2017
## 5499       344.8       95.6          31.0          6.0      0.0 2016-2017
## 5500       349.1       50.0          27.0          2.3      0.0 2016-2017
## 5501       357.8       47.9          27.0          5.0      0.0 2016-2017
## 5502       349.8       47.3          25.0          4.5      0.0 2016-2017
## 5503       348.4       60.6          27.0         12.0      0.0 2016-2017
## 5504       343.3       47.8          28.0          4.6      0.0 2016-2017
## 5505       341.1       45.7          23.0         25.0      0.0 2016-2017
## 5506       351.3       91.8          26.0          5.0      0.0 2016-2017
## 5507       350.6       44.9          25.0          4.8      0.0 2016-2017
## 5508       352.5       43.1          27.0          4.7      0.0 2016-2017
## 5509       349.1       61.9          27.0         13.2      0.0 2016-2017
## 5510       350.0       39.1          22.0          8.8      0.0 2016-2017
## 5511       353.1       46.0          28.0          4.8      0.0 2016-2017
## 5512       357.8       73.8          27.0          5.0      0.0 2016-2017
## 5513       350.1       47.9          30.0          4.7      0.0 2016-2017
## 5514       346.1       60.0          28.0         37.0      0.0 2016-2017
## 5515       349.1       50.9          23.0         43.9      0.0 2016-2017
## 5516       348.6       47.2          27.0         28.0      0.0 2016-2017
## 5517       348.2       95.1          29.0          5.0      0.0 2016-2017
## 5518       355.7       50.7          30.0         27.8      0.0 2016-2017
## 5519       356.4       46.3          22.0          5.6      0.0 2016-2017
## 5520       364.6       48.5          30.0         28.7      0.0 2016-2017
## 5521       358.6       44.8          25.0          4.9      0.0 2016-2017
## 5522       350.8       52.3          34.0         29.1      0.0 2016-2017
## 5523       357.6       45.8          24.0         50.8      0.0 2016-2017
## 5524       347.7       42.0          22.0         53.3      0.0 2016-2017
## 5525       352.6       47.1          26.0         52.7      0.0 2016-2017
## 5526       358.7       52.8          32.0         29.0      0.0 2016-2017
## 5527       361.2       53.3          30.0          5.4      0.0 2016-2017
## 5528       375.2       43.4          22.0         31.9      0.0 2016-2017
## 5529       357.5       46.1          24.0         29.7      0.0 2016-2017
## 5530       355.5       57.4          37.0          4.5      0.0 2016-2017
## 5531       358.2       49.8          27.0         55.1      0.0 2016-2017
## 5532       368.0       47.5          25.0          5.1      0.0 2016-2017
## 5533       365.3       49.8          26.0         30.4      0.0 2016-2017
## 5534       371.7       55.6          37.0         57.3      0.0 2016-2017
## 5535       371.4       47.0          24.0         29.7      0.0 2016-2017
## 5536       374.9       47.4          25.0          5.0      0.0 2016-2017
## 5537       372.9       48.1          26.0          4.9      0.0 2016-2017
## 5538       356.9       57.2          34.0          4.6      0.0 2016-2017
## 5539       369.4       53.5          29.0         32.5      0.0 2016-2017
## 5540       376.5       51.9          29.0         29.4      0.0 2016-2017
## 5541       364.7       46.5          23.0         79.5      0.0 2016-2017
## 5542       369.4       50.8          27.0         76.3      0.0 2016-2017
## 5543       364.5       47.0          27.0         27.1      0.0 2016-2017
## 5544       375.1       47.1          28.0         28.5      0.0 2016-2017
## 5545       374.3       46.8          28.0         28.9      0.0 2016-2017
## 5546       388.3       52.0          27.0         84.2      0.0 2016-2017
## 5547       384.2       56.4          31.0         55.9      0.0 2016-2017
## 5548       420.4       42.0          24.0          4.6      0.0 2017-2018
## 5549       425.8       43.5          26.0          4.1      0.0 2017-2018
## 5550       431.1       40.3          22.0          4.0      0.0 2017-2018
## 5551       437.0       40.9          22.0          4.2      0.0 2017-2018
## 5552       432.3       40.2          22.0          3.8      0.0 2017-2018
## 5553       432.5       40.5          20.0          4.1      0.0 2017-2018
## 5554       434.4       46.0          29.0          4.2      0.0 2017-2018
## 5555       442.5       38.7          20.0          4.6      0.0 2017-2018
## 5556       440.8       41.2          23.0          3.9      0.0 2017-2018
## 5557       436.9       43.3          24.0          3.9      0.0 2017-2018
## 5558       439.1       43.7          25.0          4.5      0.0 2017-2018
## 5559       423.5       45.4          26.0         45.9      0.0 2017-2018
## 5560       432.8       50.5          30.0          4.7      0.0 2017-2018
## 5561       439.2       45.8          26.0          4.4      0.0 2017-2018
## 5562       436.9       45.8          27.0          4.6      0.0 2017-2018
## 5563       440.9       44.8          25.0          4.4      0.0 2017-2018
## 5564       446.9       42.5          23.0          4.0      0.0 2017-2018
## 5565       430.3       41.8          22.0          4.4      0.0 2017-2018
## 5566       437.3       42.6          23.0         26.8      0.0 2017-2018
## 5567       434.9       44.1          25.0         26.5      0.0 2017-2018
## 5568       443.5       40.4          21.0         27.5      0.0 2017-2018
## 5569       436.9       49.7          29.0         26.7      0.0 2017-2018
## 5570       438.7       46.6          27.0         25.4      0.0 2017-2018
## 5571       432.2       49.4          30.0         26.6      0.0 2017-2018
## 5572       435.6       42.8          23.0         25.1      0.0 2017-2018
## 5573       442.6       38.9          19.0         47.1      0.0 2017-2018
## 5574       438.8       48.7          29.0         25.9      0.0 2017-2018
## 5575       440.1       41.5          23.0         25.8      0.0 2017-2018
## 5576       450.2       42.9          22.0          4.5      0.0 2017-2018
## 5577       443.6       48.9          29.0          4.5      0.0 2017-2018
## 5578       433.2       48.9          28.0         25.6      0.0 2017-2018
## 5579       451.6       49.0          29.0          4.2      0.0 2017-2018
## 5580       445.3       46.2          27.0          4.5      0.0 2017-2018
## 5581       438.1       52.1          32.0          4.0      0.0 2017-2018
## 5582       443.7       45.9          26.0          4.6      0.0 2017-2018
## 5583       455.5       43.6          24.0          4.1      0.0 2017-2018
## 5584       440.4       42.0          22.0          4.5      0.0 2017-2018
## 5585       441.8       49.8          32.0         24.3      0.0 2017-2018
## 5586       452.5       41.8          21.0          4.7      0.0 2017-2018
## 5587       431.6       44.1          24.0         44.8      0.0 2017-2018
## 5588       454.5       46.0          26.0          4.3      0.0 2017-2018
## 5589       439.4       44.3          23.0         49.0      0.0 2017-2018
## 5590       445.8       44.0          24.0          4.6      0.0 2017-2018
## 5591       435.8       41.2          23.0         73.6      0.0 2017-2018
## 5592       431.0       40.5          21.0         46.2      0.0 2017-2018
## 5593       445.9       44.6          25.0         47.5      0.0 2017-2018
## 5594       448.1       43.2          23.0         26.9      0.0 2017-2018
## 5595       450.7       48.3          27.0         25.4      0.0 2017-2018
## 5596       452.5       44.9          26.0         27.8      0.0 2017-2018
## 5597       441.4       43.5          24.0         26.2      0.0 2017-2018
## 5598       449.4       43.8          24.0          4.0      0.0 2017-2018
## 5599       460.2       41.4          22.0          4.1      0.0 2017-2018
## 5600       442.6       43.1          24.0         26.8      0.0 2017-2018
## 5601       437.1       50.3          31.0         49.6      0.0 2017-2018
## 5602       463.2       38.0          19.0          4.7      0.0 2017-2018
## 5603       455.4       39.6          20.0          4.4      0.0 2017-2018
## 5604       441.9       49.3          29.0         26.7      0.0 2017-2018
## 5605       450.6       45.8          25.0         48.5      0.0 2017-2018
## 5606       452.8       46.7          27.0         25.8      0.0 2017-2018
## 5607       455.9       47.7          28.0          4.6      0.0 2017-2018
## 5608       435.7       44.5          25.0         49.4      0.0 2017-2018
## 5609       436.6       48.0          30.0         27.4      0.0 2017-2018
## 5610       444.1       44.2          23.0         26.7      0.0 2017-2018
## 5611       446.4       48.6          27.0         26.7      0.0 2017-2018
## 5612       443.7       48.6          27.0         25.8      0.0 2017-2018
## 5613       461.4       48.0          27.0         27.4      0.0 2017-2018
## 5614       463.4       45.9          26.0         26.6      0.0 2017-2018
## 5615       449.8       49.3          28.0         27.1      0.0 2017-2018
## 5616       467.1       43.2          23.0         27.8      0.0 2017-2018
## 5617       465.2       42.9          25.0         27.5      0.0 2017-2018
## 5618       445.0       45.2          24.0         47.5      0.0 2017-2018
## 5619       442.5       55.4          36.0         26.6      0.0 2017-2018
## 5620       436.7       41.4          22.0         49.2      0.0 2017-2018
## 5621       447.5       49.8          31.0         48.0      0.0 2017-2018
## 5622       460.2       52.9          33.0         50.0      0.0 2017-2018
## 5623       454.6       50.1          29.0         27.9      0.0 2017-2018
## 5624       461.4       48.0          27.0         28.2      0.0 2017-2018
## 5625       462.6       49.1          29.0          4.9      0.0 2017-2018
## 5626       468.3       44.3          24.0          5.3      0.0 2017-2018
## 5627       456.1       45.4          25.0         51.9      0.0 2017-2018
## 5628       460.2       46.7          28.0         48.0      0.0 2017-2018
## 5629       476.9       44.0          22.0          4.9      0.0 2017-2018
## 5630       451.9       47.9          28.0         27.2      0.0 2017-2018
## 5631       445.4       56.5          35.0         94.6      0.0 2017-2018
## 5632       452.3       44.8          25.0         26.1      0.0 2017-2018
## 5633       435.9       47.9          27.0         48.2      0.0 2017-2018
## 5634       459.6       42.7          23.0         28.2      0.0 2017-2018
## 5635       478.0       55.7          34.0         28.5      0.0 2017-2018
## 5636       469.7       47.7          27.0          4.8      0.0 2017-2018
## 5637       452.2       45.0          25.0         50.1      0.0 2017-2018
## 5638       470.3       42.8          22.0         50.5      0.0 2017-2018
## 5639       442.4       53.2          35.0        120.2      0.0 2017-2018
## 5640       454.2       46.8          27.0         52.8      0.0 2017-2018
## 5641       445.9       60.0          38.0         50.2      0.0 2017-2018
## 5642       455.3       51.7          30.0         77.0      0.0 2017-2018
## 5643       463.9       42.0          21.0         28.3      0.0 2017-2018
## 5644       481.4       44.5          23.0          5.3      0.0 2017-2018
## 5645       471.0       46.1          25.0         28.3      0.0 2017-2018
## 5646       470.4       52.6          32.0         77.8      0.0 2017-2018
## 5647       450.7       47.2          26.0        100.6      0.0 2017-2018
## 5648       472.4       55.1          33.0         51.4      0.0 2017-2018
## 5649       514.6       49.4          25.0          5.0      0.0 2017-2018
## 5650       510.5       66.4          43.0         29.7      0.0 2017-2018
## 5651       395.5       45.3          28.0          5.6      0.0 2017-2018
## 5652       398.9       40.8          23.0          5.1      0.0 2017-2018
## 5653       411.5       41.0          24.0          5.6      0.0 2017-2018
## 5654       411.1       39.7          20.0          5.3      0.0 2017-2018
## 5655       400.0       41.9          23.0          4.9      0.0 2017-2018
## 5656       404.6       42.7          24.0          4.5      0.0 2017-2018
## 5657       411.5       42.5          25.0          4.1      0.0 2017-2018
## 5658       412.0       45.8          26.0          5.0      0.0 2017-2018
## 5659       400.4       39.5          21.0         48.0      0.0 2017-2018
## 5660       411.6       43.1          23.0          4.4      0.0 2017-2018
## 5661       414.2       46.5          28.0         25.5      0.0 2017-2018
## 5662       404.6       41.5          22.0         50.4      0.0 2017-2018
## 5663       413.0       41.3          23.0          4.7      0.0 2017-2018
## 5664       429.0       46.3          25.0          4.3      0.0 2017-2018
## 5665       404.1       47.4          29.0         24.9      0.0 2017-2018
## 5666       418.4       39.9          19.0         27.1      0.0 2017-2018
## 5667       406.9       40.1          21.0         26.5      0.0 2017-2018
## 5668       408.9       44.0          26.0         70.2      0.0 2017-2018
## 5669       412.2       43.5          25.0          4.6      0.0 2017-2018
## 5670       402.2       40.8          21.0         71.5      0.0 2017-2018
## 5671       426.7       47.6          28.0         29.2      0.0 2017-2018
## 5672       423.2       36.6          17.0         28.7      0.0 2017-2018
## 5673       422.0       43.3          26.0         26.0      0.0 2017-2018
## 5674       418.5       41.3          23.0         48.5      0.0 2017-2018
## 5675       400.7       50.2          31.0         98.1      0.0 2017-2018
## 5676       436.4       45.8          26.0         28.0      0.0 2017-2018
## 5677       440.1       44.3          25.0         70.8      0.0 2017-2018
## 5678       442.3       44.1          23.0         50.6      0.0 2017-2018
## 5679       450.9       45.8          26.0         51.5      0.0 2017-2018
## 5680       443.9       41.2          20.0         55.4      0.0 2017-2018
## 5681       357.9       39.8          22.0          5.8      0.0 2017-2018
## 5682       350.1       40.9          22.0         28.9      0.0 2017-2018
## 5683       362.3       40.5          22.0         27.2      0.0 2017-2018
## 5684       355.5       40.6          21.0          5.1      0.0 2017-2018
## 5685       359.1       42.4          23.0          4.4      0.0 2017-2018
## 5686       366.0       41.7          23.0         25.4      0.0 2017-2018
## 5687       354.4       45.0          27.0         24.6      0.0 2017-2018
## 5688       361.5       46.3          28.0         25.8      0.0 2017-2018
## 5689       356.3       41.4          20.0          5.0      0.0 2017-2018
## 5690       357.2       44.0          24.0         26.3      0.0 2017-2018
## 5691       364.2       42.9          25.0          4.5      0.0 2017-2018
## 5692       364.6       39.7          22.0          4.6      0.0 2017-2018
## 5693       356.8       46.8          26.0         24.9      0.0 2017-2018
## 5694       370.6       45.6          24.0          4.6      0.0 2017-2018
## 5695       356.7       40.9          22.0         25.3      0.0 2017-2018
## 5696       361.7       43.8          26.0         28.5      0.0 2017-2018
## 5697       369.9       41.6          22.0          4.7      0.0 2017-2018
## 5698       368.6       45.8          28.0          4.3      0.0 2017-2018
## 5699       357.0       52.5          35.0         26.9      0.0 2017-2018
## 5700       367.9       42.4          24.0          4.2      0.0 2017-2018
## 5701       365.1       45.5          26.0          4.4      0.0 2017-2018
## 5702       368.7       47.4          29.0          5.2      0.0 2017-2018
## 5703       364.8       41.3          23.0         50.4      0.0 2017-2018
## 5704       367.6       45.3          25.0         26.9      0.0 2017-2018
## 5705       375.2       42.7          22.0         26.9      0.0 2017-2018
## 5706       371.9       45.5          26.0         27.9      0.0 2017-2018
## 5707       364.5       44.1          26.0         47.5      0.0 2017-2018
## 5708       367.4       46.4          28.0         49.6      0.0 2017-2018
## 5709       379.5       43.3          23.0          4.6      0.0 2017-2018
## 5710       375.0       42.2          21.0         26.4      0.0 2017-2018
## 5711       378.1       42.1          22.0         28.1      0.0 2017-2018
## 5712       364.1       42.1          24.0         29.4      0.0 2017-2018
## 5713       382.7       45.9          27.0          5.4      0.0 2017-2018
## 5714       375.7       43.4          21.0          4.8      0.0 2017-2018
## 5715       374.3       44.4          24.0          4.6      0.0 2017-2018
## 5716       376.3       46.0          26.0         28.0      0.0 2017-2018
## 5717       377.9       44.8          25.0          4.6      0.0 2017-2018
## 5718       368.6       47.3          28.0         28.5      0.0 2017-2018
## 5719       383.6       48.2          27.0         27.6      0.0 2017-2018
## 5720       373.5       45.9          24.0         28.7      0.0 2017-2018
## 5721       370.2       39.3          18.0         27.7      0.0 2017-2018
## 5722       380.6       46.1          27.0         52.6      0.0 2017-2018
## 5723       370.8       42.3          21.0         28.9      0.0 2017-2018
## 5724       368.5       50.9          31.0         27.5      0.0 2017-2018
## 5725       379.3       43.5          20.0          5.2      0.0 2017-2018
## 5726       374.0       47.7          29.0         78.1      0.0 2017-2018
## 5727       371.9       44.0          23.0         27.1      0.0 2017-2018
## 5728       374.6       42.5          24.0         81.3      0.0 2017-2018
## 5729       373.0       50.2          29.0         75.1      0.0 2017-2018
## 5730       367.4       51.2          31.0         50.9      0.0 2017-2018
## 5731       381.1       49.1          28.0         29.1      0.0 2017-2018
## 5732       390.9       39.2          19.0          5.0      0.0 2017-2018
## 5733       381.8       48.3          28.0         81.9      0.0 2017-2018
## 5734       389.8       44.9          25.0         29.3      0.0 2017-2018
## 5735       387.1       49.5          28.0         54.6      0.0 2017-2018
## 5736       385.6       51.8          31.0         50.2      0.0 2017-2018
## 5737       386.6       43.3          24.0          4.5      0.0 2017-2018
## 5738       412.6       40.9          22.0          8.7      0.0 2017-2018
## 5739       428.2       39.4          21.0          8.1      0.0 2017-2018
## 5740       441.1       47.4          29.0          8.5      0.0 2017-2018
## 5741       431.0       44.1          23.0         30.4      0.0 2017-2018
## 5742       441.1       43.8          24.0          8.5      0.0 2017-2018
## 5743       449.4       41.0          23.0          7.9      0.0 2017-2018
## 5744       442.2       42.9          25.0         53.5      0.0 2017-2018
## 5745       457.1       43.3          24.0          8.6      0.0 2017-2018
## 5746       449.1       46.4          26.0         30.2      0.0 2017-2018
## 5747       457.1       45.5          26.0          8.9      0.0 2017-2018
## 5748       438.4       44.6          27.0         50.6      0.0 2017-2018
## 5749       463.2       47.8          31.0          8.1      0.0 2017-2018
## 5750       432.9       46.3          29.0         31.0      0.0 2017-2018
## 5751       443.3       53.3          35.0         52.4      0.0 2017-2018
## 5752       435.5       46.6          28.0         30.3      0.0 2017-2018
## 5753       438.9       51.2          32.0         33.0      0.0 2017-2018
## 5754       437.4       43.9          30.0          7.4      0.0 2017-2018
## 5755       456.5       44.9          27.0         52.3      0.0 2017-2018
## 5756       441.5       54.6          38.0         51.0      0.0 2017-2018
## 5757       437.6       46.6          29.0         28.8      0.0 2017-2018
## 5758       461.2       56.6          37.0          8.3      0.0 2017-2018
## 5759       442.5       48.1          30.0         51.9      0.0 2017-2018
## 5760       451.1       42.0          22.0         31.9      0.0 2017-2018
## 5761       453.8       50.9          33.0         29.4      0.0 2017-2018
## 5762       460.5       44.6          26.0          8.8      0.0 2017-2018
## 5763       431.8       42.8          24.0         54.1      0.0 2017-2018
## 5764       437.8       43.0          25.0         28.9      0.0 2017-2018
## 5765       445.1       47.4          28.0         31.6      0.0 2017-2018
## 5766       450.6       48.6          29.0         55.7      0.0 2017-2018
## 5767       449.1       46.4          27.0          8.6      0.0 2017-2018
## 5768       457.4       42.4          24.0         55.6      0.0 2017-2018
## 5769       446.9       44.3          26.0         54.9      0.0 2017-2018
## 5770       451.3       51.7          33.0         30.5      0.0 2017-2018
## 5771       447.9       49.9          29.0         30.9      0.0 2017-2018
## 5772       450.6       50.0          31.0         30.7      0.0 2017-2018
## 5773       447.9       54.4          36.0         73.2      0.0 2017-2018
## 5774       444.7       50.7          31.0         31.4      0.0 2017-2018
## 5775       456.2       57.0          36.0         30.5      0.0 2017-2018
## 5776       447.3       49.3          30.0         31.7      0.0 2017-2018
## 5777       461.5       46.5          27.0         54.9      0.0 2017-2018
## 5778       460.7       46.5          26.0         33.1      0.0 2017-2018
## 5779       452.2       47.1          25.0         53.7      0.0 2017-2018
## 5780       451.2       45.7          27.0         53.8      0.0 2017-2018
## 5781       442.4       44.9          25.0         53.4      0.0 2017-2018
## 5782       455.9       50.2          32.0         31.5      0.0 2017-2018
## 5783       455.9       64.2          47.0         30.3      0.0 2017-2018
## 5784       460.9       49.2          29.0         34.4      0.0 2017-2018
## 5785       452.8       43.8          24.0          8.5      0.0 2017-2018
## 5786       458.7       50.6          33.0         56.0      0.0 2017-2018
## 5787       459.5       41.9          22.0         33.0      0.0 2017-2018
## 5788       458.7       47.5          27.0         56.7      0.0 2017-2018
## 5789       451.0       48.6          27.0         33.1      0.0 2017-2018
## 5790       451.1       51.3          31.0         56.2      0.0 2017-2018
## 5791       455.1       45.9          26.0         56.6      0.0 2017-2018
## 5792       456.0       63.8          46.0         53.9      0.0 2017-2018
## 5793       470.7       46.4          27.0         33.1      0.0 2017-2018
## 5794       462.1       48.3          29.0         31.5      0.0 2017-2018
## 5795       442.6       54.4          31.0        101.4      0.0 2017-2018
## 5796       465.1       51.4          32.0         31.6      0.0 2017-2018
## 5797       455.1       43.8          23.0         80.0      0.0 2017-2018
## 5798       444.8       47.9          29.0         79.9      0.0 2017-2018
## 5799       447.1       48.2          29.0         50.9      0.0 2017-2018
## 5800       460.7       73.3          55.0         30.8      0.0 2017-2018
## 5801       447.2       80.1          60.0         54.3      0.0 2017-2018
## 5802       478.5       84.6          66.0          8.2      0.0 2017-2018
## 5803       457.9       54.9          33.0         57.1      0.0 2017-2018
## 5804       477.7       47.2          30.0          8.7      0.0 2017-2018
## 5805       461.8       46.2          25.0         29.7      0.0 2017-2018
## 5806       460.9       52.2          31.0         31.7      0.0 2017-2018
## 5807       458.0       63.0          44.0         55.6      0.0 2017-2018
## 5808       471.3       53.3          33.0         32.8      0.0 2017-2018
## 5809       473.9       47.4          26.0         34.1      0.0 2017-2018
## 5810       458.8       46.3          27.0         32.2      0.0 2017-2018
## 5811       474.1       47.6          29.0         31.1      0.0 2017-2018
## 5812       462.2       47.4          29.0         31.6      0.0 2017-2018
## 5813       476.7       44.2          25.0          9.2      0.0 2017-2018
## 5814       451.2       51.0          29.0         54.8      0.0 2017-2018
## 5815       465.3       56.3          36.0         54.4      0.0 2017-2018
## 5816       469.1       47.3          27.0         60.1      0.0 2017-2018
## 5817       462.3       47.4          28.0          8.6      0.0 2017-2018
## 5818       478.6       44.5          23.0          8.6      0.0 2017-2018
## 5819       491.6       39.8          20.0          9.2      0.0 2017-2018
## 5820       452.4       68.3          48.0        107.3      0.0 2017-2018
## 5821       459.4       53.7          32.0         81.6      0.0 2017-2018
## 5822       474.3       44.6          24.0         35.1      0.0 2017-2018
## 5823       479.3       47.6          28.0         32.4      0.0 2017-2018
## 5824       467.0       55.3          35.0         57.9      0.0 2017-2018
## 5825       463.8       54.4          34.0        104.2      0.0 2017-2018
## 5826       492.8       53.3          30.0         33.3      0.0 2017-2018
## 5827       461.3       48.4          28.0         30.9      0.0 2017-2018
## 5828       467.8       55.9          34.0         56.2      0.0 2017-2018
## 5829       447.9       58.6          38.0         79.3      0.0 2017-2018
## 5830       465.2       58.5          38.0         55.4      0.0 2017-2018
## 5831       490.9       46.9          27.0         33.6      0.0 2017-2018
## 5832       464.6       50.2          31.0         57.8      0.0 2017-2018
## 5833       488.5       67.6          48.0         31.8      0.0 2017-2018
## 5834       472.0       60.0          38.0         85.5      0.0 2017-2018
## 5835       489.9       71.3          52.0         81.6      0.0 2017-2018
## 5836       476.7       55.9          36.0         83.4      0.0 2017-2018
## 5837       481.1       49.7          28.0         89.3      0.0 2017-2018
## 5838       465.1       56.3          33.0        106.6      0.0 2017-2018
## 5839       462.9       56.0          37.0        109.3      0.0 2017-2018
## 5840       487.1       46.6          26.0         32.8      0.0 2017-2018
## 5841       493.1       58.9          37.0         33.1      0.0 2017-2018
## 5842       482.3       60.0          37.0         33.8      0.0 2017-2018
## 5843       478.3       57.5          35.0         86.9      0.0 2017-2018
## 5844       481.0       52.0          29.0         64.0      0.0 2017-2018
## 5845       474.8       65.8          40.0         83.1      0.0 2017-2018
## 5846       540.4       53.6          29.0         63.3      0.0 2017-2018
## 5847       424.8       42.3          23.0         33.1      0.0 2017-2018
## 5848       428.4       48.4          28.0         30.1      0.0 2017-2018
## 5849       426.6       49.4          29.0         30.4      0.0 2017-2018
## 5850       433.3       47.9          31.0         30.6      0.0 2017-2018
## 5851       435.0       46.8          27.0          7.8      0.0 2017-2018
## 5852       424.4       41.2          21.0         32.6      0.0 2017-2018
## 5853       440.4       41.7          22.0         32.7      0.0 2017-2018
## 5854       430.3       45.9          29.0         49.6      0.0 2017-2018
## 5855       446.5       43.0          23.0         32.8      0.0 2017-2018
## 5856       439.9       45.3          26.0         29.8      0.0 2017-2018
## 5857       434.6       47.2          28.0         31.7      0.0 2017-2018
## 5858       447.4       51.5          31.0         31.7      0.0 2017-2018
## 5859       438.8       47.8          28.0         31.9      0.0 2017-2018
## 5860       446.2       44.8          24.0          9.2      0.0 2017-2018
## 5861       440.2       43.3          21.0          8.9      0.0 2017-2018
## 5862       442.0       48.3          27.0         30.0      0.0 2017-2018
## 5863       434.7       44.9          24.0         54.9      0.0 2017-2018
## 5864       439.7       45.8          25.0         31.7      0.0 2017-2018
## 5865       446.1       47.6          30.0         31.3      0.0 2017-2018
## 5866       439.3       43.0          23.0         31.2      0.0 2017-2018
## 5867       423.6       42.8          23.0         31.7      0.0 2017-2018
## 5868       434.3       45.2          26.0         31.4      0.0 2017-2018
## 5869       427.6       41.2          20.0         57.6      0.0 2017-2018
## 5870       450.9       49.7          30.0         33.5      0.0 2017-2018
## 5871       443.0       46.0          26.0         30.7      0.0 2017-2018
## 5872       444.4       48.3          28.0         33.9      0.0 2017-2018
## 5873       434.0       47.7          27.0        105.7      0.0 2017-2018
## 5874       438.7       47.9          26.0         84.6      0.0 2017-2018
## 5875       441.7       44.6          25.0        105.4      0.0 2017-2018
## 5876       461.3       47.9          28.0         60.4      0.0 2017-2018
## 5877       330.0       40.0          23.0         10.6      0.0 2017-2018
## 5878       331.4       40.8          22.0         10.9      0.0 2017-2018
## 5879       333.6       43.1          24.0         10.4      0.0 2017-2018
## 5880       335.6       43.6          28.0          8.3      0.0 2017-2018
## 5881       332.8       46.3          26.0          8.8      0.0 2017-2018
## 5882       342.7       40.4          23.0         31.3      0.0 2017-2018
## 5883       337.4       40.8          23.0         30.0      0.0 2017-2018
## 5884       338.3       47.3          27.0         28.8      0.0 2017-2018
## 5885       338.4       39.5          19.0         29.6      0.0 2017-2018
## 5886       332.8       39.3          20.0          7.8      0.0 2017-2018
## 5887       331.5       46.5          26.0         28.3      0.0 2017-2018
## 5888       337.6       43.4          24.0         51.1      0.0 2017-2018
## 5889       339.8       40.6          21.0         51.4      0.0 2017-2018
## 5890       342.4       49.4          30.0          9.3      0.0 2017-2018
## 5891       331.6       46.6          26.0          9.0      0.0 2017-2018
## 5892       332.0       47.1          29.0         28.6      0.0 2017-2018
## 5893       329.2       42.2          25.0         28.3      0.0 2017-2018
## 5894       326.9       42.0          24.0         27.9      0.0 2017-2018
## 5895       332.0       44.2          24.0         30.4      0.0 2017-2018
## 5896       333.5       43.4          24.0         28.5      0.0 2017-2018
## 5897       339.5       44.6          26.0         28.2      0.0 2017-2018
## 5898       328.8       45.9          26.0         29.7      0.0 2017-2018
## 5899       335.7       44.3          24.0         10.7      0.0 2017-2018
## 5900       330.7       45.6          28.0         29.2      0.0 2017-2018
## 5901       353.2       41.8          22.0         28.8      0.0 2017-2018
## 5902       336.6       46.0          27.0         29.9      0.0 2017-2018
## 5903       334.1       47.3          29.0         31.0      0.0 2017-2018
## 5904       341.1       49.6          32.0         28.4      0.0 2017-2018
## 5905       336.2       42.9          24.0         73.4      0.0 2017-2018
## 5906       340.7       49.0          31.0          9.1      0.0 2017-2018
## 5907       344.1       47.8          28.0          9.2      0.0 2017-2018
## 5908       338.1       40.9          22.0         54.6      0.0 2017-2018
## 5909       345.3       44.8          26.0         34.4      0.0 2017-2018
## 5910       338.2       48.0          28.0          8.5      0.0 2017-2018
## 5911       347.3       49.3          29.0         33.1      0.0 2017-2018
## 5912       332.4       45.7          28.0          7.9      0.0 2017-2018
## 5913       333.1       47.7          27.0         54.3      0.0 2017-2018
## 5914       341.6       41.9          21.0         31.1      0.0 2017-2018
## 5915       336.1       45.9          26.0         32.3      0.0 2017-2018
## 5916       336.3       45.9          25.0         32.1      0.0 2017-2018
## 5917       350.6       49.7          31.0         31.0      0.0 2017-2018
## 5918       343.6       47.0          29.0         32.4      0.0 2017-2018
## 5919       343.9       43.0          23.0          8.5      0.0 2017-2018
## 5920       356.2       37.8          17.0          8.7      0.0 2017-2018
## 5921       336.8       44.0          24.0         31.4      0.0 2017-2018
## 5922       342.8       44.5          23.0         29.2      0.0 2017-2018
## 5923       334.5       50.8          31.0         31.2      0.0 2017-2018
## 5924       348.9       45.7          24.0         30.2      0.0 2017-2018
## 5925       345.6       53.9          32.0         79.7      0.0 2017-2018
## 5926       337.1       48.5          26.0         82.2      0.0 2017-2018
## 5927       358.1       43.8          24.0         31.2      0.0 2017-2018
## 5928       358.4       45.8          25.0         58.4      0.0 2017-2018
## 5929       451.9       50.2          24.0          4.4      0.0 2017-2018
## 5930       460.8       50.4          23.0          4.4      0.0 2017-2018
## 5931       466.9       51.6          25.0          4.4      0.0 2017-2018
## 5932       466.3       54.7          31.0         25.5      0.0 2017-2018
## 5933       471.6       55.1          26.0          4.6      0.0 2017-2018
## 5934       474.0       53.3          26.0          4.4      0.0 2017-2018
## 5935       466.9       54.0          28.0          4.9      0.0 2017-2018
## 5936       468.3       51.1          24.0          4.2      0.0 2017-2018
## 5937       467.8       49.5          21.0          4.3      0.0 2017-2018
## 5938       473.6       50.4          25.0          4.4      0.0 2017-2018
## 5939       475.1       50.9          23.0          4.4      0.0 2017-2018
## 5940       476.3       50.0          23.0         27.9      0.0 2017-2018
## 5941       473.6       50.7          21.0         26.5      0.0 2017-2018
## 5942       478.6       51.2          24.0         25.1      0.0 2017-2018
## 5943       465.3       48.5          22.0         24.5      0.0 2017-2018
## 5944       477.7       50.7          22.0         28.6      0.0 2017-2018
## 5945       474.6       46.7          21.0         26.5      0.0 2017-2018
## 5946       465.2       58.3          30.0         26.9      0.0 2017-2018
## 5947       491.0       49.6          24.0          4.5      0.0 2017-2018
## 5948       480.9       53.3          27.0         27.6      0.0 2017-2018
## 5949       470.0       54.6          28.0          4.3      0.0 2017-2018
## 5950       470.7       54.5          24.0          4.8      0.0 2017-2018
## 5951       487.1       51.9          24.0          4.7      0.0 2017-2018
## 5952       472.4       57.4          31.0         24.8      0.0 2017-2018
## 5953       476.9       56.0          28.0         26.1      0.0 2017-2018
## 5954       478.7       59.6          32.0          4.1      0.0 2017-2018
## 5955       487.7       59.2          32.0         25.6      0.0 2017-2018
## 5956       485.0       50.3          23.0         27.4      0.0 2017-2018
## 5957       473.6       54.1          28.0         27.4      0.0 2017-2018
## 5958       495.6       54.6          28.0          4.8      0.0 2017-2018
## 5959       490.4       56.8          27.0          4.4      0.0 2017-2018
## 5960       479.0       55.6          26.0         51.3      0.0 2017-2018
## 5961       482.3       51.9          23.0         28.2      0.0 2017-2018
## 5962       478.4       51.1          22.0         26.8      0.0 2017-2018
## 5963       479.1       53.3          25.0         28.4      0.0 2017-2018
## 5964       485.3       51.3          25.0          4.4      0.0 2017-2018
## 5965       507.0       53.2          28.0          4.5      0.0 2017-2018
## 5966       474.2       54.3          26.0         53.2      0.0 2017-2018
## 5967       474.0       51.3          24.0         47.8      0.0 2017-2018
## 5968       496.7       48.4          21.0         28.4      0.0 2017-2018
## 5969       472.6       55.7          30.0         50.2      0.0 2017-2018
## 5970       484.7       62.8          33.0         28.1      0.0 2017-2018
## 5971       480.9       52.5          25.0         26.8      0.0 2017-2018
## 5972       476.4       60.4          31.0         71.1      0.0 2017-2018
## 5973       497.6       53.9          26.0         29.0      0.0 2017-2018
## 5974       474.1       65.8          37.0         48.4      0.0 2017-2018
## 5975       466.8       53.3          27.0         27.0      0.0 2017-2018
## 5976       494.9       55.3          27.0         29.2      0.0 2017-2018
## 5977       492.9       66.8          36.0         30.1      0.0 2017-2018
## 5978       486.0       54.7          28.0         50.4      0.0 2017-2018
## 5979       479.7       57.7          29.0         49.7      0.0 2017-2018
## 5980       491.6       56.3          30.0         27.1      0.0 2017-2018
## 5981       489.0       54.1          24.0          4.7      0.0 2017-2018
## 5982       504.1       64.8          36.0          4.8      0.0 2017-2018
## 5983       484.2       54.7          27.0         49.9      0.0 2017-2018
## 5984       501.5       59.8          31.0         28.0      0.0 2017-2018
## 5985       486.5       51.3          23.0         29.1      0.0 2017-2018
## 5986       489.2       54.7          27.0         27.4      0.0 2017-2018
## 5987       488.2       59.9          30.0         52.3      0.0 2017-2018
## 5988       489.4       54.4          26.0         28.6      0.0 2017-2018
## 5989       503.4       59.2          30.0         28.4      0.0 2017-2018
## 5990       485.8       55.0          23.0         52.7      0.0 2017-2018
## 5991       476.1       52.5          25.0         28.6      0.0 2017-2018
## 5992       500.3       54.3          24.0          4.7      0.0 2017-2018
## 5993       497.7       63.2          34.0         28.6      0.0 2017-2018
## 5994       479.9       52.8          20.0         52.9      0.0 2017-2018
## 5995       514.6       54.2          26.0          4.4      0.0 2017-2018
## 5996       495.4       54.3          26.0          4.4      0.0 2017-2018
## 5997       493.2       57.0          30.0         29.8      0.0 2017-2018
## 5998       505.3       57.5          29.0         27.9      0.0 2017-2018
## 5999       495.6       58.3          29.0          4.8      0.0 2017-2018
## 6000       480.6       54.7          26.0         27.5      0.0 2017-2018
## 6001       509.3       58.9          29.0         26.7      0.0 2017-2018
## 6002       492.7       57.4          28.0         49.3      0.0 2017-2018
## 6003       484.8       54.8          26.0         53.2      0.0 2017-2018
## 6004       487.7       55.9          26.0         51.1      0.0 2017-2018
## 6005       479.5       61.0          31.0         54.3      0.0 2017-2018
## 6006       494.4       62.6          35.0         30.4      0.0 2017-2018
## 6007       481.2       52.0          22.0         29.0      0.0 2017-2018
## 6008       454.7       54.1          28.0         92.8      0.0 2017-2018
## 6009       496.0       55.7          25.0         53.5      0.0 2017-2018
## 6010       491.5       55.8          27.0          4.9      0.0 2017-2018
## 6011       470.9       54.1          25.0         28.2      0.0 2017-2018
## 6012       495.3       59.2          30.0         29.4      0.0 2017-2018
## 6013       510.5       49.2          22.0          4.6      0.0 2017-2018
## 6014       496.8       59.5          28.0         78.4      0.0 2017-2018
## 6015       515.5       55.0          23.0         31.3      0.0 2017-2018
## 6016       500.7       62.2          33.0          4.7      0.0 2017-2018
## 6017       505.6       55.7          27.0         56.8      0.0 2017-2018
## 6018       507.0       54.8          26.0         30.5      0.0 2017-2018
## 6019       474.9       53.2          27.0         75.4      0.0 2017-2018
## 6020       496.9       52.7          26.0         96.8      0.0 2017-2018
## 6021       500.0       60.2          32.0         76.1      0.0 2017-2018
## 6022       480.7       65.4          31.0         51.9      0.0 2017-2018
## 6023       499.0       51.3          24.0         29.7      0.0 2017-2018
## 6024       517.9       55.1          28.0         29.6      0.0 2017-2018
## 6025       483.5       60.3          32.0         96.8      0.0 2017-2018
## 6026       495.7       52.0          23.0         81.7      0.0 2017-2018
## 6027       498.5       58.1          29.0         28.9      0.0 2017-2018
## 6028       503.2       60.3          32.0         79.5      0.0 2017-2018
## 6029       520.6       55.2          24.0          5.5      0.0 2017-2018
## 6030       511.3       60.8          30.0         57.3      0.0 2017-2018
## 6031       499.1       58.8          29.0         53.3      0.0 2017-2018
## 6032       519.7       53.6          25.0          5.6      0.0 2017-2018
## 6033       516.7       66.3          33.0         28.4      0.0 2017-2018
## 6034       492.7       60.1          32.0         51.7      0.0 2017-2018
## 6035       543.5       59.2          27.0         56.7      0.0 2017-2018
## 6036       516.3       69.0          39.0         83.0      0.0 2017-2018
## 6037       381.7       46.6          20.0          5.9      0.0 2017-2018
## 6038       392.2       54.9          27.0          5.7      0.0 2017-2018
## 6039       387.6       56.2          31.0         75.6      0.0 2017-2018
## 6040       378.5       52.8          26.0          5.1      0.0 2017-2018
## 6041       378.9       53.2          26.0          5.2      0.0 2017-2018
## 6042       389.7       61.1          35.0          5.6      0.0 2017-2018
## 6043       376.8       55.3          28.0         27.0      0.0 2017-2018
## 6044       377.2       51.6          24.0         30.4      0.0 2017-2018
## 6045       394.3       48.9          22.0          5.5      0.0 2017-2018
## 6046       384.2       53.4          24.0         28.0      0.0 2017-2018
## 6047       390.6       55.9          28.0         28.8      0.0 2017-2018
## 6048       377.5       54.0          26.0         52.8      0.0 2017-2018
## 6049       385.4       57.3          30.0          5.6      0.0 2017-2018
## 6050       390.2       55.2          28.0         27.3      0.0 2017-2018
## 6051       388.1       47.4          22.0         30.5      0.0 2017-2018
## 6052       394.6       51.7          24.0          5.0      0.0 2017-2018
## 6053       395.1       51.0          25.0          5.3      0.0 2017-2018
## 6054       388.0       49.5          23.0         29.3      0.0 2017-2018
## 6055       395.7       52.8          24.0         31.9      0.0 2017-2018
## 6056       396.2       57.1          31.0         31.5      0.0 2017-2018
## 6057       381.4       53.1          25.0          5.9      0.0 2017-2018
## 6058       388.8       48.9          22.0         29.7      0.0 2017-2018
## 6059       382.7       57.7          31.0         51.0      0.0 2017-2018
## 6060       384.9       54.7          29.0          5.6      0.0 2017-2018
## 6061       395.4       54.6          29.0         28.9      0.0 2017-2018
## 6062       381.7       51.8          26.0         28.9      0.0 2017-2018
## 6063       381.8       52.7          24.0          5.1      0.0 2017-2018
## 6064       391.3       49.7          22.0          6.3      0.0 2017-2018
## 6065       385.2       59.5          34.0          5.2      0.0 2017-2018
## 6066       384.5       52.0          26.0         76.2      0.0 2017-2018
## 6067       403.5       54.6          27.0         28.8      0.0 2017-2018
## 6068       410.2       47.8          19.0          6.9      0.0 2017-2018
## 6069       392.1       54.9          28.0         29.9      0.0 2017-2018
## 6070       390.4       54.9          25.0          5.2      0.0 2017-2018
## 6071       393.4       58.2          31.0         51.7      0.0 2017-2018
## 6072       392.7       59.9          30.0          5.6      0.0 2017-2018
## 6073       387.1       75.6          45.0          5.4      0.0 2017-2018
## 6074       397.6       59.9          30.0         31.9      0.0 2017-2018
## 6075       396.8       63.3          33.0          5.9      0.0 2017-2018
## 6076       392.9       61.6          31.0         30.9      0.0 2017-2018
## 6077       383.7       63.6          34.0         51.7      0.0 2017-2018
## 6078       385.8       58.2          28.0         54.2      0.0 2017-2018
## 6079       400.9       49.4          22.0         30.6      0.0 2017-2018
## 6080       385.0       58.0          32.0         81.1      0.0 2017-2018
## 6081       409.0       50.9          21.0         31.8      0.0 2017-2018
## 6082       405.6       46.3          20.0          5.3      0.0 2017-2018
## 6083       390.0       51.1          24.0         31.0      0.0 2017-2018
## 6084       388.9       54.8          26.0         55.3      0.0 2017-2018
## 6085       408.6       53.9          27.0         57.1      0.0 2017-2018
## 6086       400.9       58.9          30.0         29.7      0.0 2017-2018
## 6087       407.1       58.8          30.0         30.0      0.0 2017-2018
## 6088       406.7       63.8          37.0         54.0      0.0 2017-2018
## 6089       407.0       84.0          58.0         31.3      0.0 2017-2018
## 6090       403.7       56.3          28.0         56.6      0.0 2017-2018
## 6091       410.5       52.2          25.0         82.6      0.0 2017-2018
## 6092       414.3       57.1          26.0         32.7      0.0 2017-2018
## 6093       426.5       49.7          23.0         31.5      0.0 2017-2018
## 6094       454.6       44.8          27.4          6.3      0.0 2017-2018
## 6095       456.4       50.6          30.2          6.6      0.0 2017-2018
## 6096       452.4       48.2          27.3          7.2      0.0 2017-2018
## 6097       448.2       38.3          20.3         48.3      0.0 2017-2018
## 6098       457.1       48.7          31.7         27.6      0.0 2017-2018
## 6099       462.0       49.1          32.1          6.3      0.0 2017-2018
## 6100       463.8       44.3          24.0         28.8      0.0 2017-2018
## 6101       455.3       43.1          25.7         28.4      0.0 2017-2018
## 6102       462.5       51.1          31.3         26.3      0.0 2017-2018
## 6103       458.6       42.6          25.2         27.6      0.0 2017-2018
## 6104       458.3       51.2          30.0         28.2      0.0 2017-2018
## 6105       467.8       42.2          24.1          6.9      0.0 2017-2018
## 6106       468.4       49.0          28.7          7.1      0.0 2017-2018
## 6107       469.7       40.2          18.8          6.8      0.0 2017-2018
## 6108       466.1       41.3          23.7         30.5      0.0 2017-2018
## 6109       459.7       48.2          26.1         29.8      0.0 2017-2018
## 6110       459.9       44.5          24.7         29.3      0.0 2017-2018
## 6111       463.9       48.4          28.0          7.4      0.0 2017-2018
## 6112       457.9       47.1          26.3         52.5      0.0 2017-2018
## 6113       461.4       45.1          25.5         30.3      0.0 2017-2018
## 6114       465.8       48.3          26.4         27.9      0.0 2017-2018
## 6115       471.9       47.1          25.2          7.4      0.0 2017-2018
## 6116       450.1       44.8          26.8         52.5      0.0 2017-2018
## 6117       469.9       47.8          26.1          7.0      0.0 2017-2018
## 6118       464.4       47.7          27.0         28.1      0.0 2017-2018
## 6119       467.9       43.0          22.3          7.0      0.0 2017-2018
## 6120       478.5       51.9          31.7          7.3      0.0 2017-2018
## 6121       446.2       41.0          21.5         50.2      0.0 2017-2018
## 6122       474.9       46.6          28.7         30.0      0.0 2017-2018
## 6123       473.8       51.5          34.4         29.2      0.0 2017-2018
## 6124       472.0       47.8          25.7          7.5      0.0 2017-2018
## 6125       479.5       51.2          27.5          6.9      0.0 2017-2018
## 6126       467.9       44.6          25.9         28.9      0.0 2017-2018
## 6127       481.2       47.4          27.0          7.1      0.0 2017-2018
## 6128       458.2       44.8          25.1         51.9      0.0 2017-2018
## 6129       474.1       46.5          26.6         50.6      0.0 2017-2018
## 6130       483.7       46.0          25.9          7.2      0.0 2017-2018
## 6131       469.5       47.2          27.7         51.1      0.0 2017-2018
## 6132       482.4       55.7          34.1         29.1      0.0 2017-2018
## 6133       486.3       42.9          24.0         30.8      0.0 2017-2018
## 6134       462.9       41.7          21.3         31.0      0.0 2017-2018
## 6135       473.6       50.2          29.1         30.4      0.0 2017-2018
## 6136       475.0       64.3          42.5          7.7      0.0 2017-2018
## 6137       465.0       48.6          25.5         53.8      0.0 2017-2018
## 6138       474.4       48.3          26.6         29.3      0.0 2017-2018
## 6139       465.1       46.8          25.5         54.9      0.0 2017-2018
## 6140       465.3       48.5          27.7         29.6      0.0 2017-2018
## 6141       478.3       51.5          29.7          7.8      0.0 2017-2018
## 6142       475.0       44.3          26.6         28.0      0.0 2017-2018
## 6143       475.8       50.0          28.0         31.4      0.0 2017-2018
## 6144       482.4       54.1          31.6         32.4      0.0 2017-2018
## 6145       492.2       48.0          28.4         31.3      0.0 2017-2018
## 6146       480.3       44.5          23.9          6.8      0.0 2017-2018
## 6147       457.5       49.4          27.9         29.8      0.0 2017-2018
## 6148       490.6       49.4          30.3          7.5      0.0 2017-2018
## 6149       476.9       48.6          26.2         30.5      0.0 2017-2018
## 6150       465.0       49.8          27.5         52.7      0.0 2017-2018
## 6151       486.5       53.4          30.9         32.8      0.0 2017-2018
## 6152       487.4       48.8          29.2          6.9      0.0 2017-2018
## 6153       480.2       49.5          29.6         31.0      0.0 2017-2018
## 6154       453.3       47.4          22.2         76.2      0.0 2017-2018
## 6155       476.5       45.3          26.2         53.1      0.0 2017-2018
## 6156       477.7       54.6          31.6         53.2      0.0 2017-2018
## 6157       475.7       47.8          25.0         55.4      0.0 2017-2018
## 6158       485.5       45.9          24.3          7.6      0.0 2017-2018
## 6159       487.4       51.9          30.8          7.8      0.0 2017-2018
## 6160       474.4       48.6          26.7         53.9      0.0 2017-2018
## 6161       479.8       52.8          32.3         29.5      0.0 2017-2018
## 6162       463.2       51.3          30.7         27.7      0.0 2017-2018
## 6163       487.6       49.8          27.6         53.5      0.0 2017-2018
## 6164       485.1       50.3          29.0         31.7      0.0 2017-2018
## 6165       494.6       47.0          25.2         33.7      0.0 2017-2018
## 6166       476.2       50.8          31.0         52.3      0.0 2017-2018
## 6167       476.2       55.4          35.5         49.5      0.0 2017-2018
## 6168       478.9       53.1          30.9         86.5      0.0 2017-2018
## 6169       473.4       54.4          34.2         77.7      0.0 2017-2018
## 6170       483.7       54.7          32.6         51.6      0.0 2017-2018
## 6171       493.5       49.9          29.5         33.0      0.0 2017-2018
## 6172       496.0       47.8          27.4         32.9      0.0 2017-2018
## 6173       482.0       47.6          25.8         54.3      0.0 2017-2018
## 6174       489.4       47.7          24.7         30.7      0.0 2017-2018
## 6175       491.5       57.0          32.0         30.9      0.0 2017-2018
## 6176       487.3       54.6          30.3         31.0      0.0 2017-2018
## 6177       498.3       51.4          30.4         32.7      0.0 2017-2018
## 6178       496.4       46.7          27.6         29.2      0.0 2017-2018
## 6179       495.6       48.2          26.1         54.3      0.0 2017-2018
## 6180       473.5       46.6          23.4         86.7      0.0 2017-2018
## 6181       477.3       57.4          39.8         98.6      0.0 2017-2018
## 6182       476.4       49.2          28.5         30.7      0.0 2017-2018
## 6183       507.2       49.3          29.6          7.4      0.0 2017-2018
## 6184       502.7       44.3          23.8          7.2      0.0 2017-2018
## 6185       484.6       51.8          30.5         83.1      0.0 2017-2018
## 6186       467.2       63.7          42.0        109.3      0.0 2017-2018
## 6187       499.4       48.9          26.9         55.1      0.0 2017-2018
## 6188       528.0       50.9          28.3          8.8      0.0 2017-2018
## 6189       511.5       52.0          31.4         80.2      0.0 2017-2018
## 6190       517.4       55.0          34.1         82.7      0.0 2017-2018
## 6191       552.3       50.7          29.7          7.8      0.0 2017-2018
## 6192       504.2       56.0          31.6         82.2      0.0 2017-2018
## 6193       531.6       54.3          30.4         34.9      0.0 2017-2018
## 6194       420.8       41.1          22.8         30.4      0.0 2017-2018
## 6195       417.0       42.5          23.6          8.6      0.0 2017-2018
## 6196       422.0       44.1          24.2          7.7      0.0 2017-2018
## 6197       421.3       48.6          30.0         30.4      0.0 2017-2018
## 6198       427.6       45.3          33.1          7.3      0.0 2017-2018
## 6199       423.5       49.0          29.1         51.5      0.0 2017-2018
## 6200       420.9       43.5          24.5          6.5      0.0 2017-2018
## 6201       421.7       53.2          32.8          6.8      0.0 2017-2018
## 6202       434.1       43.9          22.2          8.2      0.0 2017-2018
## 6203       423.0       45.4          23.7          8.1      0.0 2017-2018
## 6204       433.8       40.6          20.2         31.8      0.0 2017-2018
## 6205       434.2       46.6          23.9         28.1      0.0 2017-2018
## 6206       423.4       44.4          26.0          6.7      0.0 2017-2018
## 6207       431.6       47.1          25.2         29.1      0.0 2017-2018
## 6208       436.7       48.3          29.0          7.2      0.0 2017-2018
## 6209       424.4       50.7          32.7         28.9      0.0 2017-2018
## 6210       440.8       48.1          26.2          8.1      0.0 2017-2018
## 6211       422.8       47.9          29.2         29.3      0.0 2017-2018
## 6212       422.1       46.0          39.0         52.0      0.0 2017-2018
## 6213       434.4       46.6          27.7         29.5      0.0 2017-2018
## 6214       446.1       39.2          19.6          6.6      0.0 2017-2018
## 6215       437.5       45.2          25.0         55.0      0.0 2017-2018
## 6216       442.9       45.9          24.3         33.7      0.0 2017-2018
## 6217       452.6       42.5          22.3          7.8      0.0 2017-2018
## 6218       461.1       41.4          19.7         30.9      0.0 2017-2018
## 6219       449.5       44.8          24.3          7.5      0.0 2017-2018
## 6220       459.3       46.4          27.3         31.4      0.0 2017-2018
## 6221       453.6       40.7          22.8         56.6      0.0 2017-2018
## 6222       427.5       52.5          33.9         96.8      0.0 2017-2018
## 6223       461.2       42.2          22.1         31.6      0.0 2017-2018
## 6224       468.1       45.1          25.0          4.0      0.0 2017-2018
## 6225       468.1       49.5          28.0          4.2      0.0 2017-2018
## 6226       458.1       47.6          23.0          4.3      0.0 2017-2018
## 6227       470.2       48.0          26.0          4.0      0.0 2017-2018
## 6228       464.0       53.3          31.0         27.0      0.0 2017-2018
## 6229       472.1       44.8          25.0          3.7      0.0 2017-2018
## 6230       483.3       47.9          25.0          4.1      0.0 2017-2018
## 6231       474.4       56.6          35.0          4.1      0.0 2017-2018
## 6232       476.3       51.5          31.0         27.7      0.0 2017-2018
## 6233       479.4       44.0          22.0          4.2      0.0 2017-2018
## 6234       480.5       44.5          23.0          4.0      0.0 2017-2018
## 6235       478.1       44.3          24.0         27.5      0.0 2017-2018
## 6236       487.1       48.7          26.0          4.0      0.0 2017-2018
## 6237       483.0       41.2          19.0         28.2      0.0 2017-2018
## 6238       483.3       42.2          20.0          4.1      0.0 2017-2018
## 6239       471.7       49.0          25.0         28.8      0.0 2017-2018
## 6240       471.9       51.6          30.0         52.1      0.0 2017-2018
## 6241       471.2       43.8          21.0         28.2      0.0 2017-2018
## 6242       489.9       44.9          22.0          5.0      0.0 2017-2018
## 6243       474.7       54.4          34.0         50.2      0.0 2017-2018
## 6244       491.3       47.0          25.0          4.2      0.0 2017-2018
## 6245       483.6       47.9          28.0         50.0      0.0 2017-2018
## 6246       472.3       47.6          26.0         52.5      0.0 2017-2018
## 6247       483.6       47.5          23.0         28.8      0.0 2017-2018
## 6248       486.9       56.6          32.0         28.9      0.0 2017-2018
## 6249       490.6       45.6          23.0         28.9      0.0 2017-2018
##               location  race_type ID
## 1           Anterselva     Sprint  2
## 2           Anterselva     Sprint  2
## 3           Anterselva     Sprint  2
## 4           Anterselva     Sprint  2
## 5           Anterselva     Sprint  2
## 6           Anterselva     Sprint  2
## 7           Anterselva     Sprint  2
## 8           Anterselva     Sprint  2
## 9           Anterselva     Sprint  2
## 10          Anterselva     Sprint  2
## 11          Anterselva     Sprint  2
## 12          Anterselva     Sprint  2
## 13          Anterselva     Sprint  2
## 14          Anterselva     Sprint  2
## 15          Anterselva     Sprint  2
## 16          Anterselva     Sprint  2
## 17          Anterselva     Sprint  2
## 18          Anterselva     Sprint  2
## 19          Anterselva     Sprint  2
## 20          Anterselva     Sprint  2
## 21          Anterselva     Sprint  2
## 22          Anterselva     Sprint  2
## 23          Anterselva     Sprint  2
## 24          Anterselva     Sprint  2
## 25          Anterselva     Sprint  2
## 26          Anterselva     Sprint  2
## 27          Anterselva     Sprint  2
## 28          Anterselva     Sprint  2
## 29          Anterselva     Sprint  2
## 30          Anterselva     Sprint  2
## 31          Anterselva     Sprint  2
## 32          Anterselva     Sprint  2
## 33          Anterselva     Sprint  2
## 34          Anterselva     Sprint  2
## 35          Anterselva     Sprint  2
## 36          Anterselva     Sprint  2
## 37          Anterselva     Sprint  2
## 38          Anterselva     Sprint  2
## 39          Anterselva     Sprint  2
## 40          Anterselva     Sprint  2
## 41          Anterselva     Sprint  2
## 42          Anterselva     Sprint  2
## 43          Anterselva     Sprint  2
## 44          Anterselva     Sprint  2
## 45          Anterselva     Sprint  2
## 46          Anterselva     Sprint  2
## 47          Anterselva     Sprint  2
## 48          Anterselva     Sprint  2
## 49          Anterselva     Sprint  2
## 50          Anterselva     Sprint  2
## 51          Anterselva     Sprint  2
## 52          Anterselva     Sprint  2
## 53          Anterselva     Sprint  2
## 54          Anterselva     Sprint  2
## 55          Anterselva     Sprint  2
## 56          Anterselva     Sprint  2
## 57          Anterselva     Sprint  2
## 58          Anterselva     Sprint  2
## 59          Anterselva     Sprint  2
## 60          Anterselva     Sprint  2
## 61          Anterselva     Sprint  2
## 62          Anterselva     Sprint  2
## 63          Anterselva     Sprint  2
## 64          Anterselva     Sprint  2
## 65          Anterselva     Sprint  2
## 66          Anterselva     Sprint  2
## 67          Anterselva     Sprint  2
## 68          Anterselva     Sprint  2
## 69          Anterselva     Sprint  2
## 70          Anterselva     Sprint  2
## 71          Anterselva     Sprint  2
## 72          Anterselva     Sprint  2
## 73          Anterselva     Sprint  2
## 74          Anterselva     Sprint  2
## 75          Anterselva     Sprint  2
## 76          Anterselva     Sprint  2
## 77          Anterselva     Sprint  2
## 78          Anterselva     Sprint  2
## 79          Anterselva     Sprint  2
## 80          Anterselva     Sprint  2
## 81          Anterselva     Sprint  2
## 82          Anterselva     Sprint  2
## 83          Anterselva     Sprint  2
## 84          Anterselva     Sprint  2
## 85          Anterselva     Sprint  2
## 86          Anterselva     Sprint  2
## 87          Anterselva     Sprint  2
## 88          Anterselva     Sprint  2
## 89          Anterselva     Sprint  2
## 90          Anterselva     Sprint  2
## 91          Anterselva     Sprint  2
## 92          Anterselva     Sprint  2
## 93          Anterselva     Sprint  2
## 94          Anterselva     Sprint  2
## 95          Anterselva     Sprint  2
## 96          Anterselva     Sprint  2
## 97          Anterselva     Sprint  2
## 98          Anterselva     Sprint  2
## 99          Anterselva     Sprint  2
## 100         Anterselva     Sprint  2
## 101         Anterselva     Sprint  2
## 102         Anterselva    Pursuit  1
## 103         Anterselva    Pursuit  1
## 104         Anterselva    Pursuit  1
## 105         Anterselva    Pursuit  1
## 106         Anterselva    Pursuit  1
## 107         Anterselva    Pursuit  1
## 108         Anterselva    Pursuit  1
## 109         Anterselva    Pursuit  1
## 110         Anterselva    Pursuit  1
## 111         Anterselva    Pursuit  1
## 112         Anterselva    Pursuit  1
## 113         Anterselva    Pursuit  1
## 114         Anterselva    Pursuit  1
## 115         Anterselva    Pursuit  1
## 116         Anterselva    Pursuit  1
## 117         Anterselva    Pursuit  1
## 118         Anterselva    Pursuit  1
## 119         Anterselva    Pursuit  1
## 120         Anterselva    Pursuit  1
## 121         Anterselva    Pursuit  1
## 122         Anterselva    Pursuit  1
## 123         Anterselva    Pursuit  1
## 124         Anterselva    Pursuit  1
## 125         Anterselva    Pursuit  1
## 126         Anterselva    Pursuit  1
## 127         Anterselva    Pursuit  1
## 128         Anterselva    Pursuit  1
## 129         Anterselva    Pursuit  1
## 130         Anterselva    Pursuit  1
## 131         Anterselva    Pursuit  1
## 132         Anterselva    Pursuit  1
## 133         Anterselva    Pursuit  1
## 134         Anterselva    Pursuit  1
## 135         Anterselva    Pursuit  1
## 136         Anterselva    Pursuit  1
## 137         Anterselva    Pursuit  1
## 138         Anterselva    Pursuit  1
## 139         Anterselva    Pursuit  1
## 140         Anterselva    Pursuit  1
## 141         Anterselva    Pursuit  1
## 142         Anterselva    Pursuit  1
## 143         Anterselva    Pursuit  1
## 144         Anterselva    Pursuit  1
## 145         Anterselva    Pursuit  1
## 146         Anterselva    Pursuit  1
## 147         Anterselva    Pursuit  1
## 148         Anterselva    Pursuit  1
## 149         Anterselva    Pursuit  1
## 150         Anterselva    Pursuit  1
## 151         Anterselva    Pursuit  1
## 152         Anterselva    Pursuit  1
## 153         Anterselva    Pursuit  1
## 154         Anterselva    Pursuit  1
## 155         Hochfilzen     Sprint  4
## 156         Hochfilzen     Sprint  4
## 157         Hochfilzen     Sprint  4
## 158         Hochfilzen     Sprint  4
## 159         Hochfilzen     Sprint  4
## 160         Hochfilzen     Sprint  4
## 161         Hochfilzen     Sprint  4
## 162         Hochfilzen     Sprint  4
## 163         Hochfilzen     Sprint  4
## 164         Hochfilzen     Sprint  4
## 165         Hochfilzen     Sprint  4
## 166         Hochfilzen     Sprint  4
## 167         Hochfilzen     Sprint  4
## 168         Hochfilzen     Sprint  4
## 169         Hochfilzen     Sprint  4
## 170         Hochfilzen     Sprint  4
## 171         Hochfilzen     Sprint  4
## 172         Hochfilzen     Sprint  4
## 173         Hochfilzen     Sprint  4
## 174         Hochfilzen     Sprint  4
## 175         Hochfilzen     Sprint  4
## 176         Hochfilzen     Sprint  4
## 177         Hochfilzen     Sprint  4
## 178         Hochfilzen     Sprint  4
## 179         Hochfilzen     Sprint  4
## 180         Hochfilzen     Sprint  4
## 181         Hochfilzen     Sprint  4
## 182         Hochfilzen     Sprint  4
## 183         Hochfilzen     Sprint  4
## 184         Hochfilzen     Sprint  4
## 185         Hochfilzen     Sprint  4
## 186         Hochfilzen     Sprint  4
## 187         Hochfilzen     Sprint  4
## 188         Hochfilzen     Sprint  4
## 189         Hochfilzen     Sprint  4
## 190         Hochfilzen     Sprint  4
## 191         Hochfilzen     Sprint  4
## 192         Hochfilzen     Sprint  4
## 193         Hochfilzen     Sprint  4
## 194         Hochfilzen     Sprint  4
## 195         Hochfilzen     Sprint  4
## 196         Hochfilzen     Sprint  4
## 197         Hochfilzen     Sprint  4
## 198         Hochfilzen     Sprint  4
## 199         Hochfilzen     Sprint  4
## 200         Hochfilzen     Sprint  4
## 201         Hochfilzen     Sprint  4
## 202         Hochfilzen     Sprint  4
## 203         Hochfilzen     Sprint  4
## 204         Hochfilzen     Sprint  4
## 205         Hochfilzen     Sprint  4
## 206         Hochfilzen     Sprint  4
## 207         Hochfilzen     Sprint  4
## 208         Hochfilzen     Sprint  4
## 209         Hochfilzen     Sprint  4
## 210         Hochfilzen     Sprint  4
## 211         Hochfilzen     Sprint  4
## 212         Hochfilzen     Sprint  4
## 213         Hochfilzen     Sprint  4
## 214         Hochfilzen     Sprint  4
## 215         Hochfilzen     Sprint  4
## 216         Hochfilzen     Sprint  4
## 217         Hochfilzen     Sprint  4
## 218         Hochfilzen     Sprint  4
## 219         Hochfilzen     Sprint  4
## 220         Hochfilzen     Sprint  4
## 221         Hochfilzen     Sprint  4
## 222         Hochfilzen     Sprint  4
## 223         Hochfilzen     Sprint  4
## 224         Hochfilzen     Sprint  4
## 225         Hochfilzen     Sprint  4
## 226         Hochfilzen     Sprint  4
## 227         Hochfilzen     Sprint  4
## 228         Hochfilzen     Sprint  4
## 229         Hochfilzen     Sprint  4
## 230         Hochfilzen     Sprint  4
## 231         Hochfilzen     Sprint  4
## 232         Hochfilzen     Sprint  4
## 233         Hochfilzen     Sprint  4
## 234         Hochfilzen     Sprint  4
## 235         Hochfilzen     Sprint  4
## 236         Hochfilzen     Sprint  4
## 237         Hochfilzen     Sprint  4
## 238         Hochfilzen     Sprint  4
## 239         Hochfilzen     Sprint  4
## 240         Hochfilzen     Sprint  4
## 241         Hochfilzen     Sprint  4
## 242         Hochfilzen     Sprint  4
## 243         Hochfilzen     Sprint  4
## 244         Hochfilzen     Sprint  4
## 245         Hochfilzen     Sprint  4
## 246         Hochfilzen     Sprint  4
## 247         Hochfilzen     Sprint  4
## 248         Hochfilzen     Sprint  4
## 249         Hochfilzen     Sprint  4
## 250         Hochfilzen     Sprint  4
## 251         Hochfilzen     Sprint  4
## 252         Hochfilzen     Sprint  4
## 253         Hochfilzen     Sprint  4
## 254         Hochfilzen     Sprint  4
## 255         Hochfilzen     Sprint  4
## 256         Hochfilzen     Sprint  4
## 257         Hochfilzen     Sprint  4
## 258         Hochfilzen     Sprint  4
## 259         Hochfilzen    Pursuit  3
## 260         Hochfilzen    Pursuit  3
## 261         Hochfilzen    Pursuit  3
## 262         Hochfilzen    Pursuit  3
## 263         Hochfilzen    Pursuit  3
## 264         Hochfilzen    Pursuit  3
## 265         Hochfilzen    Pursuit  3
## 266         Hochfilzen    Pursuit  3
## 267         Hochfilzen    Pursuit  3
## 268         Hochfilzen    Pursuit  3
## 269         Hochfilzen    Pursuit  3
## 270         Hochfilzen    Pursuit  3
## 271         Hochfilzen    Pursuit  3
## 272         Hochfilzen    Pursuit  3
## 273         Hochfilzen    Pursuit  3
## 274         Hochfilzen    Pursuit  3
## 275         Hochfilzen    Pursuit  3
## 276         Hochfilzen    Pursuit  3
## 277         Hochfilzen    Pursuit  3
## 278         Hochfilzen    Pursuit  3
## 279         Hochfilzen    Pursuit  3
## 280         Hochfilzen    Pursuit  3
## 281         Hochfilzen    Pursuit  3
## 282         Hochfilzen    Pursuit  3
## 283         Hochfilzen    Pursuit  3
## 284         Hochfilzen    Pursuit  3
## 285         Hochfilzen    Pursuit  3
## 286         Hochfilzen    Pursuit  3
## 287         Hochfilzen    Pursuit  3
## 288         Hochfilzen    Pursuit  3
## 289         Hochfilzen    Pursuit  3
## 290         Hochfilzen    Pursuit  3
## 291         Hochfilzen    Pursuit  3
## 292         Hochfilzen    Pursuit  3
## 293         Hochfilzen    Pursuit  3
## 294         Hochfilzen    Pursuit  3
## 295         Hochfilzen    Pursuit  3
## 296         Hochfilzen    Pursuit  3
## 297         Hochfilzen    Pursuit  3
## 298         Hochfilzen    Pursuit  3
## 299         Hochfilzen    Pursuit  3
## 300         Hochfilzen    Pursuit  3
## 301         Hochfilzen    Pursuit  3
## 302         Hochfilzen    Pursuit  3
## 303         Hochfilzen    Pursuit  3
## 304         Hochfilzen    Pursuit  3
## 305         Hochfilzen    Pursuit  3
## 306         Hochfilzen    Pursuit  3
## 307         Hochfilzen    Pursuit  3
## 308         Hochfilzen    Pursuit  3
## 309         Hochfilzen    Pursuit  3
## 310         Hochfilzen    Pursuit  3
## 311         Hochfilzen    Pursuit  3
## 312         Hochfilzen    Pursuit  3
## 313         Hochfilzen    Pursuit  3
## 314         Hochfilzen    Pursuit  3
## 315    Khanty-Mansiysk     Sprint  7
## 316    Khanty-Mansiysk     Sprint  7
## 317    Khanty-Mansiysk     Sprint  7
## 318    Khanty-Mansiysk     Sprint  7
## 319    Khanty-Mansiysk     Sprint  7
## 320    Khanty-Mansiysk     Sprint  7
## 321    Khanty-Mansiysk     Sprint  7
## 322    Khanty-Mansiysk     Sprint  7
## 323    Khanty-Mansiysk     Sprint  7
## 324    Khanty-Mansiysk     Sprint  7
## 325    Khanty-Mansiysk     Sprint  7
## 326    Khanty-Mansiysk     Sprint  7
## 327    Khanty-Mansiysk     Sprint  7
## 328    Khanty-Mansiysk     Sprint  7
## 329    Khanty-Mansiysk     Sprint  7
## 330    Khanty-Mansiysk     Sprint  7
## 331    Khanty-Mansiysk     Sprint  7
## 332    Khanty-Mansiysk     Sprint  7
## 333    Khanty-Mansiysk     Sprint  7
## 334    Khanty-Mansiysk     Sprint  7
## 335    Khanty-Mansiysk     Sprint  7
## 336    Khanty-Mansiysk     Sprint  7
## 337    Khanty-Mansiysk     Sprint  7
## 338    Khanty-Mansiysk     Sprint  7
## 339    Khanty-Mansiysk     Sprint  7
## 340    Khanty-Mansiysk     Sprint  7
## 341    Khanty-Mansiysk     Sprint  7
## 342    Khanty-Mansiysk     Sprint  7
## 343    Khanty-Mansiysk     Sprint  7
## 344    Khanty-Mansiysk     Sprint  7
## 345    Khanty-Mansiysk     Sprint  7
## 346    Khanty-Mansiysk     Sprint  7
## 347    Khanty-Mansiysk     Sprint  7
## 348    Khanty-Mansiysk     Sprint  7
## 349    Khanty-Mansiysk     Sprint  7
## 350    Khanty-Mansiysk     Sprint  7
## 351    Khanty-Mansiysk     Sprint  7
## 352    Khanty-Mansiysk     Sprint  7
## 353    Khanty-Mansiysk     Sprint  7
## 354    Khanty-Mansiysk     Sprint  7
## 355    Khanty-Mansiysk     Sprint  7
## 356    Khanty-Mansiysk     Sprint  7
## 357    Khanty-Mansiysk     Sprint  7
## 358    Khanty-Mansiysk     Sprint  7
## 359    Khanty-Mansiysk     Sprint  7
## 360    Khanty-Mansiysk     Sprint  7
## 361    Khanty-Mansiysk     Sprint  7
## 362    Khanty-Mansiysk     Sprint  7
## 363    Khanty-Mansiysk     Sprint  7
## 364    Khanty-Mansiysk     Sprint  7
## 365    Khanty-Mansiysk     Sprint  7
## 366    Khanty-Mansiysk     Sprint  7
## 367    Khanty-Mansiysk     Sprint  7
## 368    Khanty-Mansiysk     Sprint  7
## 369    Khanty-Mansiysk     Sprint  7
## 370    Khanty-Mansiysk     Sprint  7
## 371    Khanty-Mansiysk     Sprint  7
## 372    Khanty-Mansiysk     Sprint  7
## 373    Khanty-Mansiysk     Sprint  7
## 374    Khanty-Mansiysk     Sprint  7
## 375    Khanty-Mansiysk     Sprint  7
## 376    Khanty-Mansiysk     Sprint  7
## 377    Khanty-Mansiysk     Sprint  7
## 378    Khanty-Mansiysk     Sprint  7
## 379    Khanty-Mansiysk     Sprint  7
## 380    Khanty-Mansiysk     Sprint  7
## 381    Khanty-Mansiysk     Sprint  7
## 382    Khanty-Mansiysk     Sprint  7
## 383    Khanty-Mansiysk     Sprint  7
## 384    Khanty-Mansiysk     Sprint  7
## 385    Khanty-Mansiysk     Sprint  7
## 386    Khanty-Mansiysk     Sprint  7
## 387    Khanty-Mansiysk     Sprint  7
## 388    Khanty-Mansiysk     Sprint  7
## 389    Khanty-Mansiysk     Sprint  7
## 390    Khanty-Mansiysk     Sprint  7
## 391    Khanty-Mansiysk     Sprint  7
## 392    Khanty-Mansiysk     Sprint  7
## 393    Khanty-Mansiysk     Sprint  7
## 394    Khanty-Mansiysk     Sprint  7
## 395    Khanty-Mansiysk     Sprint  7
## 396    Khanty-Mansiysk     Sprint  7
## 397    Khanty-Mansiysk     Sprint  7
## 398    Khanty-Mansiysk     Sprint  7
## 399    Khanty-Mansiysk     Sprint  7
## 400    Khanty-Mansiysk     Sprint  7
## 401    Khanty-Mansiysk     Sprint  7
## 402    Khanty-Mansiysk     Sprint  7
## 403    Khanty-Mansiysk Mass start  5
## 404    Khanty-Mansiysk Mass start  5
## 405    Khanty-Mansiysk Mass start  5
## 406    Khanty-Mansiysk Mass start  5
## 407    Khanty-Mansiysk Mass start  5
## 408    Khanty-Mansiysk Mass start  5
## 409    Khanty-Mansiysk Mass start  5
## 410    Khanty-Mansiysk Mass start  5
## 411    Khanty-Mansiysk Mass start  5
## 412    Khanty-Mansiysk Mass start  5
## 413    Khanty-Mansiysk Mass start  5
## 414    Khanty-Mansiysk Mass start  5
## 415    Khanty-Mansiysk Mass start  5
## 416    Khanty-Mansiysk Mass start  5
## 417    Khanty-Mansiysk Mass start  5
## 418    Khanty-Mansiysk Mass start  5
## 419    Khanty-Mansiysk Mass start  5
## 420    Khanty-Mansiysk Mass start  5
## 421    Khanty-Mansiysk Mass start  5
## 422    Khanty-Mansiysk Mass start  5
## 423    Khanty-Mansiysk Mass start  5
## 424    Khanty-Mansiysk Mass start  5
## 425    Khanty-Mansiysk Mass start  5
## 426    Khanty-Mansiysk Mass start  5
## 427    Khanty-Mansiysk Mass start  5
## 428    Khanty-Mansiysk Mass start  5
## 429    Khanty-Mansiysk Mass start  5
## 430    Khanty-Mansiysk Mass start  5
## 431    Khanty-Mansiysk Mass start  5
## 432    Khanty-Mansiysk Mass start  5
## 433    Khanty-Mansiysk    Pursuit  6
## 434    Khanty-Mansiysk    Pursuit  6
## 435    Khanty-Mansiysk    Pursuit  6
## 436    Khanty-Mansiysk    Pursuit  6
## 437    Khanty-Mansiysk    Pursuit  6
## 438    Khanty-Mansiysk    Pursuit  6
## 439    Khanty-Mansiysk    Pursuit  6
## 440    Khanty-Mansiysk    Pursuit  6
## 441    Khanty-Mansiysk    Pursuit  6
## 442    Khanty-Mansiysk    Pursuit  6
## 443    Khanty-Mansiysk    Pursuit  6
## 444    Khanty-Mansiysk    Pursuit  6
## 445    Khanty-Mansiysk    Pursuit  6
## 446    Khanty-Mansiysk    Pursuit  6
## 447    Khanty-Mansiysk    Pursuit  6
## 448    Khanty-Mansiysk    Pursuit  6
## 449    Khanty-Mansiysk    Pursuit  6
## 450    Khanty-Mansiysk    Pursuit  6
## 451    Khanty-Mansiysk    Pursuit  6
## 452    Khanty-Mansiysk    Pursuit  6
## 453    Khanty-Mansiysk    Pursuit  6
## 454    Khanty-Mansiysk    Pursuit  6
## 455    Khanty-Mansiysk    Pursuit  6
## 456    Khanty-Mansiysk    Pursuit  6
## 457    Khanty-Mansiysk    Pursuit  6
## 458    Khanty-Mansiysk    Pursuit  6
## 459    Khanty-Mansiysk    Pursuit  6
## 460    Khanty-Mansiysk    Pursuit  6
## 461    Khanty-Mansiysk    Pursuit  6
## 462    Khanty-Mansiysk    Pursuit  6
## 463    Khanty-Mansiysk    Pursuit  6
## 464    Khanty-Mansiysk    Pursuit  6
## 465    Khanty-Mansiysk    Pursuit  6
## 466    Khanty-Mansiysk    Pursuit  6
## 467    Khanty-Mansiysk    Pursuit  6
## 468    Khanty-Mansiysk    Pursuit  6
## 469    Khanty-Mansiysk    Pursuit  6
## 470    Khanty-Mansiysk    Pursuit  6
## 471    Khanty-Mansiysk    Pursuit  6
## 472    Khanty-Mansiysk    Pursuit  6
## 473    Khanty-Mansiysk    Pursuit  6
## 474    Khanty-Mansiysk    Pursuit  6
## 475    Khanty-Mansiysk    Pursuit  6
## 476    Khanty-Mansiysk    Pursuit  6
## 477    Khanty-Mansiysk    Pursuit  6
## 478    Khanty-Mansiysk    Pursuit  6
## 479    Khanty-Mansiysk    Pursuit  6
## 480    Khanty-Mansiysk    Pursuit  6
## 481    Khanty-Mansiysk    Pursuit  6
## 482    Khanty-Mansiysk    Pursuit  6
## 483    Khanty-Mansiysk    Pursuit  6
## 484    Khanty-Mansiysk    Pursuit  6
## 485    Khanty-Mansiysk    Pursuit  6
## 486    Khanty-Mansiysk    Pursuit  6
## 487    Khanty-Mansiysk    Pursuit  6
## 488        Kontiolahti     Sprint 11
## 489        Kontiolahti     Sprint 11
## 490        Kontiolahti     Sprint 11
## 491        Kontiolahti     Sprint 11
## 492        Kontiolahti     Sprint 11
## 493        Kontiolahti     Sprint 11
## 494        Kontiolahti     Sprint 11
## 495        Kontiolahti     Sprint 11
## 496        Kontiolahti     Sprint 11
## 497        Kontiolahti     Sprint 11
## 498        Kontiolahti     Sprint 11
## 499        Kontiolahti     Sprint 11
## 500        Kontiolahti     Sprint 11
## 501        Kontiolahti     Sprint 11
## 502        Kontiolahti     Sprint 11
## 503        Kontiolahti     Sprint 11
## 504        Kontiolahti     Sprint 11
## 505        Kontiolahti     Sprint 11
## 506        Kontiolahti     Sprint 11
## 507        Kontiolahti     Sprint 11
## 508        Kontiolahti     Sprint 11
## 509        Kontiolahti     Sprint 11
## 510        Kontiolahti     Sprint 11
## 511        Kontiolahti     Sprint 11
## 512        Kontiolahti     Sprint 11
## 513        Kontiolahti     Sprint 11
## 514        Kontiolahti     Sprint 11
## 515        Kontiolahti     Sprint 11
## 516        Kontiolahti     Sprint 11
## 517        Kontiolahti     Sprint 11
## 518        Kontiolahti     Sprint 11
## 519        Kontiolahti     Sprint 11
## 520        Kontiolahti     Sprint 11
## 521        Kontiolahti     Sprint 11
## 522        Kontiolahti     Sprint 11
## 523        Kontiolahti     Sprint 11
## 524        Kontiolahti     Sprint 11
## 525        Kontiolahti     Sprint 11
## 526        Kontiolahti     Sprint 11
## 527        Kontiolahti     Sprint 11
## 528        Kontiolahti     Sprint 11
## 529        Kontiolahti     Sprint 11
## 530        Kontiolahti     Sprint 11
## 531        Kontiolahti     Sprint 11
## 532        Kontiolahti     Sprint 11
## 533        Kontiolahti     Sprint 11
## 534        Kontiolahti     Sprint 11
## 535        Kontiolahti     Sprint 11
## 536        Kontiolahti     Sprint 11
## 537        Kontiolahti     Sprint 11
## 538        Kontiolahti     Sprint 11
## 539        Kontiolahti     Sprint 11
## 540        Kontiolahti     Sprint 11
## 541        Kontiolahti     Sprint 11
## 542        Kontiolahti     Sprint 11
## 543        Kontiolahti     Sprint 11
## 544        Kontiolahti     Sprint 11
## 545        Kontiolahti     Sprint 11
## 546        Kontiolahti     Sprint 11
## 547        Kontiolahti     Sprint 11
## 548        Kontiolahti     Sprint 11
## 549        Kontiolahti     Sprint 11
## 550        Kontiolahti     Sprint 11
## 551        Kontiolahti     Sprint 11
## 552        Kontiolahti     Sprint 11
## 553        Kontiolahti     Sprint 11
## 554        Kontiolahti     Sprint 11
## 555        Kontiolahti     Sprint 11
## 556        Kontiolahti     Sprint 11
## 557        Kontiolahti     Sprint 11
## 558        Kontiolahti     Sprint 11
## 559        Kontiolahti     Sprint 11
## 560        Kontiolahti     Sprint 11
## 561        Kontiolahti     Sprint 11
## 562        Kontiolahti     Sprint 11
## 563        Kontiolahti     Sprint 11
## 564        Kontiolahti     Sprint 11
## 565        Kontiolahti     Sprint 11
## 566        Kontiolahti     Sprint 11
## 567        Kontiolahti     Sprint 11
## 568        Kontiolahti     Sprint 11
## 569        Kontiolahti     Sprint 11
## 570        Kontiolahti     Sprint 11
## 571        Kontiolahti     Sprint 11
## 572        Kontiolahti     Sprint 11
## 573        Kontiolahti     Sprint 11
## 574        Kontiolahti     Sprint 11
## 575        Kontiolahti     Sprint 11
## 576        Kontiolahti     Sprint 11
## 577        Kontiolahti     Sprint 11
## 578        Kontiolahti     Sprint 11
## 579        Kontiolahti     Sprint 11
## 580        Kontiolahti     Sprint 11
## 581        Kontiolahti     Sprint 11
## 582        Kontiolahti     Sprint 11
## 583        Kontiolahti     Sprint 11
## 584        Kontiolahti     Sprint 11
## 585        Kontiolahti     Sprint 11
## 586        Kontiolahti     Sprint 11
## 587        Kontiolahti     Sprint 11
## 588        Kontiolahti     Sprint 11
## 589        Kontiolahti     Sprint 11
## 590        Kontiolahti     Sprint 11
## 591        Kontiolahti     Sprint 11
## 592        Kontiolahti     Sprint 11
## 593        Kontiolahti     Sprint 11
## 594        Kontiolahti     Sprint 11
## 595        Kontiolahti     Sprint 11
## 596        Kontiolahti     Sprint 11
## 597        Kontiolahti     Sprint 11
## 598        Kontiolahti     Sprint 11
## 599        Kontiolahti     Sprint 11
## 600        Kontiolahti     Sprint 11
## 601        Kontiolahti     Sprint 11
## 602        Kontiolahti     Sprint 11
## 603        Kontiolahti     Sprint 11
## 604        Kontiolahti     Sprint 11
## 605        Kontiolahti     Sprint 11
## 606        Kontiolahti     Sprint 11
## 607        Kontiolahti     Sprint 11
## 608        Kontiolahti Individual  8
## 609        Kontiolahti Individual  8
## 610        Kontiolahti Individual  8
## 611        Kontiolahti Individual  8
## 612        Kontiolahti Individual  8
## 613        Kontiolahti Individual  8
## 614        Kontiolahti Individual  8
## 615        Kontiolahti Individual  8
## 616        Kontiolahti Individual  8
## 617        Kontiolahti Individual  8
## 618        Kontiolahti Individual  8
## 619        Kontiolahti Individual  8
## 620        Kontiolahti Individual  8
## 621        Kontiolahti Individual  8
## 622        Kontiolahti Individual  8
## 623        Kontiolahti Individual  8
## 624        Kontiolahti Individual  8
## 625        Kontiolahti Individual  8
## 626        Kontiolahti Individual  8
## 627        Kontiolahti Individual  8
## 628        Kontiolahti Individual  8
## 629        Kontiolahti Individual  8
## 630        Kontiolahti Individual  8
## 631        Kontiolahti Individual  8
## 632        Kontiolahti Individual  8
## 633        Kontiolahti Individual  8
## 634        Kontiolahti Individual  8
## 635        Kontiolahti Individual  8
## 636        Kontiolahti Individual  8
## 637        Kontiolahti Individual  8
## 638        Kontiolahti Individual  8
## 639        Kontiolahti Individual  8
## 640        Kontiolahti Individual  8
## 641        Kontiolahti Individual  8
## 642        Kontiolahti Individual  8
## 643        Kontiolahti Individual  8
## 644        Kontiolahti Individual  8
## 645        Kontiolahti Individual  8
## 646        Kontiolahti Individual  8
## 647        Kontiolahti Individual  8
## 648        Kontiolahti Individual  8
## 649        Kontiolahti Individual  8
## 650        Kontiolahti Individual  8
## 651        Kontiolahti Individual  8
## 652        Kontiolahti Individual  8
## 653        Kontiolahti Individual  8
## 654        Kontiolahti Individual  8
## 655        Kontiolahti Individual  8
## 656        Kontiolahti Individual  8
## 657        Kontiolahti Individual  8
## 658        Kontiolahti Individual  8
## 659        Kontiolahti Individual  8
## 660        Kontiolahti Individual  8
## 661        Kontiolahti Individual  8
## 662        Kontiolahti Individual  8
## 663        Kontiolahti Individual  8
## 664        Kontiolahti Individual  8
## 665        Kontiolahti Individual  8
## 666        Kontiolahti Individual  8
## 667        Kontiolahti Individual  8
## 668        Kontiolahti Individual  8
## 669        Kontiolahti Individual  8
## 670        Kontiolahti Individual  8
## 671        Kontiolahti Individual  8
## 672        Kontiolahti Individual  8
## 673        Kontiolahti Individual  8
## 674        Kontiolahti Individual  8
## 675        Kontiolahti Individual  8
## 676        Kontiolahti Individual  8
## 677        Kontiolahti Individual  8
## 678        Kontiolahti Individual  8
## 679        Kontiolahti Individual  8
## 680        Kontiolahti Individual  8
## 681        Kontiolahti Individual  8
## 682        Kontiolahti Individual  8
## 683        Kontiolahti Individual  8
## 684        Kontiolahti Individual  8
## 685        Kontiolahti Individual  8
## 686        Kontiolahti Individual  8
## 687        Kontiolahti Individual  8
## 688        Kontiolahti Individual  8
## 689        Kontiolahti Individual  8
## 690        Kontiolahti Individual  8
## 691        Kontiolahti Individual  8
## 692        Kontiolahti Individual  8
## 693        Kontiolahti Individual  8
## 694        Kontiolahti Individual  8
## 695        Kontiolahti Individual  8
## 696        Kontiolahti Individual  8
## 697        Kontiolahti Individual  8
## 698        Kontiolahti Individual  8
## 699        Kontiolahti Individual  8
## 700        Kontiolahti Individual  8
## 701        Kontiolahti Individual  8
## 702        Kontiolahti Individual  8
## 703        Kontiolahti Individual  8
## 704        Kontiolahti Individual  8
## 705        Kontiolahti Individual  8
## 706        Kontiolahti Individual  8
## 707        Kontiolahti Individual  8
## 708        Kontiolahti Individual  8
## 709        Kontiolahti Individual  8
## 710        Kontiolahti Individual  8
## 711        Kontiolahti Individual  8
## 712        Kontiolahti Individual  8
## 713        Kontiolahti Individual  8
## 714        Kontiolahti Individual  8
## 715        Kontiolahti Individual  8
## 716        Kontiolahti Individual  8
## 717        Kontiolahti Individual  8
## 718        Kontiolahti Individual  8
## 719        Kontiolahti Individual  8
## 720        Kontiolahti Individual  8
## 721        Kontiolahti Individual  8
## 722        Kontiolahti Individual  8
## 723        Kontiolahti Individual  8
## 724        Kontiolahti Individual  8
## 725        Kontiolahti Individual  8
## 726        Kontiolahti Individual  8
## 727        Kontiolahti Individual  8
## 728        Kontiolahti Mass start  9
## 729        Kontiolahti Mass start  9
## 730        Kontiolahti Mass start  9
## 731        Kontiolahti Mass start  9
## 732        Kontiolahti Mass start  9
## 733        Kontiolahti Mass start  9
## 734        Kontiolahti Mass start  9
## 735        Kontiolahti Mass start  9
## 736        Kontiolahti Mass start  9
## 737        Kontiolahti Mass start  9
## 738        Kontiolahti Mass start  9
## 739        Kontiolahti Mass start  9
## 740        Kontiolahti Mass start  9
## 741        Kontiolahti Mass start  9
## 742        Kontiolahti Mass start  9
## 743        Kontiolahti Mass start  9
## 744        Kontiolahti Mass start  9
## 745        Kontiolahti Mass start  9
## 746        Kontiolahti Mass start  9
## 747        Kontiolahti Mass start  9
## 748        Kontiolahti Mass start  9
## 749        Kontiolahti Mass start  9
## 750        Kontiolahti Mass start  9
## 751        Kontiolahti Mass start  9
## 752        Kontiolahti Mass start  9
## 753        Kontiolahti Mass start  9
## 754        Kontiolahti Mass start  9
## 755        Kontiolahti Mass start  9
## 756        Kontiolahti Mass start  9
## 757        Kontiolahti Mass start  9
## 758        Kontiolahti    Pursuit 10
## 759        Kontiolahti    Pursuit 10
## 760        Kontiolahti    Pursuit 10
## 761        Kontiolahti    Pursuit 10
## 762        Kontiolahti    Pursuit 10
## 763        Kontiolahti    Pursuit 10
## 764        Kontiolahti    Pursuit 10
## 765        Kontiolahti    Pursuit 10
## 766        Kontiolahti    Pursuit 10
## 767        Kontiolahti    Pursuit 10
## 768        Kontiolahti    Pursuit 10
## 769        Kontiolahti    Pursuit 10
## 770        Kontiolahti    Pursuit 10
## 771        Kontiolahti    Pursuit 10
## 772        Kontiolahti    Pursuit 10
## 773        Kontiolahti    Pursuit 10
## 774        Kontiolahti    Pursuit 10
## 775        Kontiolahti    Pursuit 10
## 776        Kontiolahti    Pursuit 10
## 777        Kontiolahti    Pursuit 10
## 778        Kontiolahti    Pursuit 10
## 779        Kontiolahti    Pursuit 10
## 780        Kontiolahti    Pursuit 10
## 781        Kontiolahti    Pursuit 10
## 782        Kontiolahti    Pursuit 10
## 783        Kontiolahti    Pursuit 10
## 784        Kontiolahti    Pursuit 10
## 785        Kontiolahti    Pursuit 10
## 786        Kontiolahti    Pursuit 10
## 787        Kontiolahti    Pursuit 10
## 788        Kontiolahti    Pursuit 10
## 789        Kontiolahti    Pursuit 10
## 790        Kontiolahti    Pursuit 10
## 791        Kontiolahti    Pursuit 10
## 792        Kontiolahti    Pursuit 10
## 793        Kontiolahti    Pursuit 10
## 794        Kontiolahti    Pursuit 10
## 795        Kontiolahti    Pursuit 10
## 796        Kontiolahti    Pursuit 10
## 797        Kontiolahti    Pursuit 10
## 798        Kontiolahti    Pursuit 10
## 799        Kontiolahti    Pursuit 10
## 800        Kontiolahti    Pursuit 10
## 801        Kontiolahti    Pursuit 10
## 802        Kontiolahti    Pursuit 10
## 803        Kontiolahti    Pursuit 10
## 804        Kontiolahti    Pursuit 10
## 805        Kontiolahti    Pursuit 10
## 806        Kontiolahti    Pursuit 10
## 807        Kontiolahti    Pursuit 10
## 808        Kontiolahti    Pursuit 10
## 809        Kontiolahti    Pursuit 10
## 810        Kontiolahti    Pursuit 10
## 811        Kontiolahti    Pursuit 10
## 812        Kontiolahti    Pursuit 10
## 813        Kontiolahti    Pursuit 10
## 814        Kontiolahti    Pursuit 10
## 815        Kontiolahti    Pursuit 10
## 816        Kontiolahti    Pursuit 10
## 817        Kontiolahti    Pursuit 10
## 818         Nove_Mesto     Sprint 13
## 819         Nove_Mesto     Sprint 13
## 820         Nove_Mesto     Sprint 13
## 821         Nove_Mesto     Sprint 13
## 822         Nove_Mesto     Sprint 13
## 823         Nove_Mesto     Sprint 13
## 824         Nove_Mesto     Sprint 13
## 825         Nove_Mesto     Sprint 13
## 826         Nove_Mesto     Sprint 13
## 827         Nove_Mesto     Sprint 13
## 828         Nove_Mesto     Sprint 13
## 829         Nove_Mesto     Sprint 13
## 830         Nove_Mesto     Sprint 13
## 831         Nove_Mesto     Sprint 13
## 832         Nove_Mesto     Sprint 13
## 833         Nove_Mesto     Sprint 13
## 834         Nove_Mesto     Sprint 13
## 835         Nove_Mesto     Sprint 13
## 836         Nove_Mesto     Sprint 13
## 837         Nove_Mesto     Sprint 13
## 838         Nove_Mesto     Sprint 13
## 839         Nove_Mesto     Sprint 13
## 840         Nove_Mesto     Sprint 13
## 841         Nove_Mesto     Sprint 13
## 842         Nove_Mesto     Sprint 13
## 843         Nove_Mesto     Sprint 13
## 844         Nove_Mesto     Sprint 13
## 845         Nove_Mesto     Sprint 13
## 846         Nove_Mesto     Sprint 13
## 847         Nove_Mesto     Sprint 13
## 848         Nove_Mesto     Sprint 13
## 849         Nove_Mesto     Sprint 13
## 850         Nove_Mesto     Sprint 13
## 851         Nove_Mesto     Sprint 13
## 852         Nove_Mesto     Sprint 13
## 853         Nove_Mesto     Sprint 13
## 854         Nove_Mesto     Sprint 13
## 855         Nove_Mesto     Sprint 13
## 856         Nove_Mesto     Sprint 13
## 857         Nove_Mesto     Sprint 13
## 858         Nove_Mesto     Sprint 13
## 859         Nove_Mesto     Sprint 13
## 860         Nove_Mesto     Sprint 13
## 861         Nove_Mesto     Sprint 13
## 862         Nove_Mesto     Sprint 13
## 863         Nove_Mesto     Sprint 13
## 864         Nove_Mesto     Sprint 13
## 865         Nove_Mesto     Sprint 13
## 866         Nove_Mesto     Sprint 13
## 867         Nove_Mesto     Sprint 13
## 868         Nove_Mesto     Sprint 13
## 869         Nove_Mesto     Sprint 13
## 870         Nove_Mesto     Sprint 13
## 871         Nove_Mesto     Sprint 13
## 872         Nove_Mesto     Sprint 13
## 873         Nove_Mesto     Sprint 13
## 874         Nove_Mesto     Sprint 13
## 875         Nove_Mesto     Sprint 13
## 876         Nove_Mesto     Sprint 13
## 877         Nove_Mesto     Sprint 13
## 878         Nove_Mesto     Sprint 13
## 879         Nove_Mesto     Sprint 13
## 880         Nove_Mesto     Sprint 13
## 881         Nove_Mesto     Sprint 13
## 882         Nove_Mesto     Sprint 13
## 883         Nove_Mesto     Sprint 13
## 884         Nove_Mesto     Sprint 13
## 885         Nove_Mesto     Sprint 13
## 886         Nove_Mesto     Sprint 13
## 887         Nove_Mesto     Sprint 13
## 888         Nove_Mesto     Sprint 13
## 889         Nove_Mesto     Sprint 13
## 890         Nove_Mesto     Sprint 13
## 891         Nove_Mesto     Sprint 13
## 892         Nove_Mesto     Sprint 13
## 893         Nove_Mesto     Sprint 13
## 894         Nove_Mesto     Sprint 13
## 895         Nove_Mesto     Sprint 13
## 896         Nove_Mesto     Sprint 13
## 897         Nove_Mesto     Sprint 13
## 898         Nove_Mesto     Sprint 13
## 899         Nove_Mesto     Sprint 13
## 900         Nove_Mesto     Sprint 13
## 901         Nove_Mesto     Sprint 13
## 902         Nove_Mesto     Sprint 13
## 903         Nove_Mesto     Sprint 13
## 904         Nove_Mesto     Sprint 13
## 905         Nove_Mesto     Sprint 13
## 906         Nove_Mesto     Sprint 13
## 907         Nove_Mesto     Sprint 13
## 908         Nove_Mesto     Sprint 13
## 909         Nove_Mesto     Sprint 13
## 910         Nove_Mesto     Sprint 13
## 911         Nove_Mesto     Sprint 13
## 912         Nove_Mesto    Pursuit 12
## 913         Nove_Mesto    Pursuit 12
## 914         Nove_Mesto    Pursuit 12
## 915         Nove_Mesto    Pursuit 12
## 916         Nove_Mesto    Pursuit 12
## 917         Nove_Mesto    Pursuit 12
## 918         Nove_Mesto    Pursuit 12
## 919         Nove_Mesto    Pursuit 12
## 920         Nove_Mesto    Pursuit 12
## 921         Nove_Mesto    Pursuit 12
## 922         Nove_Mesto    Pursuit 12
## 923         Nove_Mesto    Pursuit 12
## 924         Nove_Mesto    Pursuit 12
## 925         Nove_Mesto    Pursuit 12
## 926         Nove_Mesto    Pursuit 12
## 927         Nove_Mesto    Pursuit 12
## 928         Nove_Mesto    Pursuit 12
## 929         Nove_Mesto    Pursuit 12
## 930         Nove_Mesto    Pursuit 12
## 931         Nove_Mesto    Pursuit 12
## 932         Nove_Mesto    Pursuit 12
## 933         Nove_Mesto    Pursuit 12
## 934         Nove_Mesto    Pursuit 12
## 935         Nove_Mesto    Pursuit 12
## 936         Nove_Mesto    Pursuit 12
## 937         Nove_Mesto    Pursuit 12
## 938         Nove_Mesto    Pursuit 12
## 939         Nove_Mesto    Pursuit 12
## 940         Nove_Mesto    Pursuit 12
## 941         Nove_Mesto    Pursuit 12
## 942         Nove_Mesto    Pursuit 12
## 943         Nove_Mesto    Pursuit 12
## 944         Nove_Mesto    Pursuit 12
## 945         Nove_Mesto    Pursuit 12
## 946         Nove_Mesto    Pursuit 12
## 947         Nove_Mesto    Pursuit 12
## 948         Nove_Mesto    Pursuit 12
## 949         Nove_Mesto    Pursuit 12
## 950         Nove_Mesto    Pursuit 12
## 951         Nove_Mesto    Pursuit 12
## 952         Nove_Mesto    Pursuit 12
## 953         Nove_Mesto    Pursuit 12
## 954         Nove_Mesto    Pursuit 12
## 955         Nove_Mesto    Pursuit 12
## 956         Nove_Mesto    Pursuit 12
## 957         Nove_Mesto    Pursuit 12
## 958         Nove_Mesto    Pursuit 12
## 959         Nove_Mesto    Pursuit 12
## 960         Nove_Mesto    Pursuit 12
## 961         Nove_Mesto    Pursuit 12
## 962         Nove_Mesto    Pursuit 12
## 963         Nove_Mesto    Pursuit 12
## 964         Nove_Mesto    Pursuit 12
## 965         Nove_Mesto    Pursuit 12
## 966            Oberhof     Sprint 15
## 967            Oberhof     Sprint 15
## 968            Oberhof     Sprint 15
## 969            Oberhof     Sprint 15
## 970            Oberhof     Sprint 15
## 971            Oberhof     Sprint 15
## 972            Oberhof     Sprint 15
## 973            Oberhof     Sprint 15
## 974            Oberhof     Sprint 15
## 975            Oberhof     Sprint 15
## 976            Oberhof     Sprint 15
## 977            Oberhof     Sprint 15
## 978            Oberhof     Sprint 15
## 979            Oberhof     Sprint 15
## 980            Oberhof     Sprint 15
## 981            Oberhof     Sprint 15
## 982            Oberhof     Sprint 15
## 983            Oberhof     Sprint 15
## 984            Oberhof     Sprint 15
## 985            Oberhof     Sprint 15
## 986            Oberhof     Sprint 15
## 987            Oberhof     Sprint 15
## 988            Oberhof     Sprint 15
## 989            Oberhof     Sprint 15
## 990            Oberhof     Sprint 15
## 991            Oberhof     Sprint 15
## 992            Oberhof     Sprint 15
## 993            Oberhof     Sprint 15
## 994            Oberhof     Sprint 15
## 995            Oberhof     Sprint 15
## 996            Oberhof     Sprint 15
## 997            Oberhof     Sprint 15
## 998            Oberhof     Sprint 15
## 999            Oberhof     Sprint 15
## 1000           Oberhof     Sprint 15
## 1001           Oberhof     Sprint 15
## 1002           Oberhof     Sprint 15
## 1003           Oberhof     Sprint 15
## 1004           Oberhof     Sprint 15
## 1005           Oberhof     Sprint 15
## 1006           Oberhof     Sprint 15
## 1007           Oberhof     Sprint 15
## 1008           Oberhof     Sprint 15
## 1009           Oberhof     Sprint 15
## 1010           Oberhof     Sprint 15
## 1011           Oberhof     Sprint 15
## 1012           Oberhof     Sprint 15
## 1013           Oberhof     Sprint 15
## 1014           Oberhof     Sprint 15
## 1015           Oberhof     Sprint 15
## 1016           Oberhof     Sprint 15
## 1017           Oberhof     Sprint 15
## 1018           Oberhof     Sprint 15
## 1019           Oberhof     Sprint 15
## 1020           Oberhof     Sprint 15
## 1021           Oberhof     Sprint 15
## 1022           Oberhof     Sprint 15
## 1023           Oberhof     Sprint 15
## 1024           Oberhof     Sprint 15
## 1025           Oberhof     Sprint 15
## 1026           Oberhof     Sprint 15
## 1027           Oberhof     Sprint 15
## 1028           Oberhof     Sprint 15
## 1029           Oberhof     Sprint 15
## 1030           Oberhof     Sprint 15
## 1031           Oberhof     Sprint 15
## 1032           Oberhof     Sprint 15
## 1033           Oberhof     Sprint 15
## 1034           Oberhof     Sprint 15
## 1035           Oberhof     Sprint 15
## 1036           Oberhof     Sprint 15
## 1037           Oberhof     Sprint 15
## 1038           Oberhof     Sprint 15
## 1039           Oberhof     Sprint 15
## 1040           Oberhof     Sprint 15
## 1041           Oberhof     Sprint 15
## 1042           Oberhof     Sprint 15
## 1043           Oberhof     Sprint 15
## 1044           Oberhof     Sprint 15
## 1045           Oberhof     Sprint 15
## 1046           Oberhof     Sprint 15
## 1047           Oberhof     Sprint 15
## 1048           Oberhof     Sprint 15
## 1049           Oberhof     Sprint 15
## 1050           Oberhof     Sprint 15
## 1051           Oberhof     Sprint 15
## 1052           Oberhof     Sprint 15
## 1053           Oberhof     Sprint 15
## 1054           Oberhof     Sprint 15
## 1055           Oberhof     Sprint 15
## 1056           Oberhof     Sprint 15
## 1057           Oberhof     Sprint 15
## 1058           Oberhof     Sprint 15
## 1059           Oberhof     Sprint 15
## 1060           Oberhof     Sprint 15
## 1061           Oberhof     Sprint 15
## 1062           Oberhof     Sprint 15
## 1063           Oberhof     Sprint 15
## 1064           Oberhof     Sprint 15
## 1065           Oberhof Mass start 14
## 1066           Oberhof Mass start 14
## 1067           Oberhof Mass start 14
## 1068           Oberhof Mass start 14
## 1069           Oberhof Mass start 14
## 1070           Oberhof Mass start 14
## 1071           Oberhof Mass start 14
## 1072           Oberhof Mass start 14
## 1073           Oberhof Mass start 14
## 1074           Oberhof Mass start 14
## 1075           Oberhof Mass start 14
## 1076           Oberhof Mass start 14
## 1077           Oberhof Mass start 14
## 1078           Oberhof Mass start 14
## 1079           Oberhof Mass start 14
## 1080           Oberhof Mass start 14
## 1081           Oberhof Mass start 14
## 1082           Oberhof Mass start 14
## 1083           Oberhof Mass start 14
## 1084           Oberhof Mass start 14
## 1085           Oberhof Mass start 14
## 1086           Oberhof Mass start 14
## 1087           Oberhof Mass start 14
## 1088           Oberhof Mass start 14
## 1089           Oberhof Mass start 14
## 1090           Oberhof Mass start 14
## 1091           Oberhof Mass start 14
## 1092           Oberhof Mass start 14
## 1093           Oberhof Mass start 14
## 1094        Oestersund     Sprint 18
## 1095        Oestersund     Sprint 18
## 1096        Oestersund     Sprint 18
## 1097        Oestersund     Sprint 18
## 1098        Oestersund     Sprint 18
## 1099        Oestersund     Sprint 18
## 1100        Oestersund     Sprint 18
## 1101        Oestersund     Sprint 18
## 1102        Oestersund     Sprint 18
## 1103        Oestersund     Sprint 18
## 1104        Oestersund     Sprint 18
## 1105        Oestersund     Sprint 18
## 1106        Oestersund     Sprint 18
## 1107        Oestersund     Sprint 18
## 1108        Oestersund     Sprint 18
## 1109        Oestersund     Sprint 18
## 1110        Oestersund     Sprint 18
## 1111        Oestersund     Sprint 18
## 1112        Oestersund     Sprint 18
## 1113        Oestersund     Sprint 18
## 1114        Oestersund     Sprint 18
## 1115        Oestersund     Sprint 18
## 1116        Oestersund     Sprint 18
## 1117        Oestersund     Sprint 18
## 1118        Oestersund     Sprint 18
## 1119        Oestersund     Sprint 18
## 1120        Oestersund     Sprint 18
## 1121        Oestersund     Sprint 18
## 1122        Oestersund     Sprint 18
## 1123        Oestersund     Sprint 18
## 1124        Oestersund     Sprint 18
## 1125        Oestersund     Sprint 18
## 1126        Oestersund     Sprint 18
## 1127        Oestersund     Sprint 18
## 1128        Oestersund     Sprint 18
## 1129        Oestersund     Sprint 18
## 1130        Oestersund     Sprint 18
## 1131        Oestersund     Sprint 18
## 1132        Oestersund     Sprint 18
## 1133        Oestersund     Sprint 18
## 1134        Oestersund     Sprint 18
## 1135        Oestersund     Sprint 18
## 1136        Oestersund     Sprint 18
## 1137        Oestersund     Sprint 18
## 1138        Oestersund     Sprint 18
## 1139        Oestersund     Sprint 18
## 1140        Oestersund     Sprint 18
## 1141        Oestersund     Sprint 18
## 1142        Oestersund     Sprint 18
## 1143        Oestersund     Sprint 18
## 1144        Oestersund     Sprint 18
## 1145        Oestersund     Sprint 18
## 1146        Oestersund     Sprint 18
## 1147        Oestersund     Sprint 18
## 1148        Oestersund     Sprint 18
## 1149        Oestersund     Sprint 18
## 1150        Oestersund     Sprint 18
## 1151        Oestersund     Sprint 18
## 1152        Oestersund     Sprint 18
## 1153        Oestersund     Sprint 18
## 1154        Oestersund     Sprint 18
## 1155        Oestersund     Sprint 18
## 1156        Oestersund     Sprint 18
## 1157        Oestersund     Sprint 18
## 1158        Oestersund     Sprint 18
## 1159        Oestersund     Sprint 18
## 1160        Oestersund     Sprint 18
## 1161        Oestersund     Sprint 18
## 1162        Oestersund     Sprint 18
## 1163        Oestersund     Sprint 18
## 1164        Oestersund     Sprint 18
## 1165        Oestersund     Sprint 18
## 1166        Oestersund     Sprint 18
## 1167        Oestersund     Sprint 18
## 1168        Oestersund     Sprint 18
## 1169        Oestersund     Sprint 18
## 1170        Oestersund     Sprint 18
## 1171        Oestersund     Sprint 18
## 1172        Oestersund     Sprint 18
## 1173        Oestersund     Sprint 18
## 1174        Oestersund     Sprint 18
## 1175        Oestersund     Sprint 18
## 1176        Oestersund     Sprint 18
## 1177        Oestersund     Sprint 18
## 1178        Oestersund     Sprint 18
## 1179        Oestersund     Sprint 18
## 1180        Oestersund     Sprint 18
## 1181        Oestersund     Sprint 18
## 1182        Oestersund     Sprint 18
## 1183        Oestersund     Sprint 18
## 1184        Oestersund     Sprint 18
## 1185        Oestersund     Sprint 18
## 1186        Oestersund     Sprint 18
## 1187        Oestersund     Sprint 18
## 1188        Oestersund     Sprint 18
## 1189        Oestersund     Sprint 18
## 1190        Oestersund     Sprint 18
## 1191        Oestersund     Sprint 18
## 1192        Oestersund     Sprint 18
## 1193        Oestersund Individual 16
## 1194        Oestersund Individual 16
## 1195        Oestersund Individual 16
## 1196        Oestersund Individual 16
## 1197        Oestersund Individual 16
## 1198        Oestersund Individual 16
## 1199        Oestersund Individual 16
## 1200        Oestersund Individual 16
## 1201        Oestersund Individual 16
## 1202        Oestersund Individual 16
## 1203        Oestersund Individual 16
## 1204        Oestersund Individual 16
## 1205        Oestersund Individual 16
## 1206        Oestersund Individual 16
## 1207        Oestersund Individual 16
## 1208        Oestersund Individual 16
## 1209        Oestersund Individual 16
## 1210        Oestersund Individual 16
## 1211        Oestersund Individual 16
## 1212        Oestersund Individual 16
## 1213        Oestersund Individual 16
## 1214        Oestersund Individual 16
## 1215        Oestersund Individual 16
## 1216        Oestersund Individual 16
## 1217        Oestersund Individual 16
## 1218        Oestersund Individual 16
## 1219        Oestersund Individual 16
## 1220        Oestersund Individual 16
## 1221        Oestersund Individual 16
## 1222        Oestersund Individual 16
## 1223        Oestersund Individual 16
## 1224        Oestersund Individual 16
## 1225        Oestersund Individual 16
## 1226        Oestersund Individual 16
## 1227        Oestersund Individual 16
## 1228        Oestersund Individual 16
## 1229        Oestersund Individual 16
## 1230        Oestersund Individual 16
## 1231        Oestersund Individual 16
## 1232        Oestersund Individual 16
## 1233        Oestersund Individual 16
## 1234        Oestersund Individual 16
## 1235        Oestersund Individual 16
## 1236        Oestersund Individual 16
## 1237        Oestersund Individual 16
## 1238        Oestersund Individual 16
## 1239        Oestersund Individual 16
## 1240        Oestersund Individual 16
## 1241        Oestersund Individual 16
## 1242        Oestersund Individual 16
## 1243        Oestersund Individual 16
## 1244        Oestersund Individual 16
## 1245        Oestersund Individual 16
## 1246        Oestersund Individual 16
## 1247        Oestersund Individual 16
## 1248        Oestersund Individual 16
## 1249        Oestersund Individual 16
## 1250        Oestersund Individual 16
## 1251        Oestersund Individual 16
## 1252        Oestersund Individual 16
## 1253        Oestersund Individual 16
## 1254        Oestersund Individual 16
## 1255        Oestersund Individual 16
## 1256        Oestersund Individual 16
## 1257        Oestersund Individual 16
## 1258        Oestersund Individual 16
## 1259        Oestersund Individual 16
## 1260        Oestersund Individual 16
## 1261        Oestersund Individual 16
## 1262        Oestersund Individual 16
## 1263        Oestersund Individual 16
## 1264        Oestersund Individual 16
## 1265        Oestersund Individual 16
## 1266        Oestersund Individual 16
## 1267        Oestersund Individual 16
## 1268        Oestersund Individual 16
## 1269        Oestersund Individual 16
## 1270        Oestersund Individual 16
## 1271        Oestersund Individual 16
## 1272        Oestersund Individual 16
## 1273        Oestersund Individual 16
## 1274        Oestersund Individual 16
## 1275        Oestersund Individual 16
## 1276        Oestersund Individual 16
## 1277        Oestersund Individual 16
## 1278        Oestersund Individual 16
## 1279        Oestersund Individual 16
## 1280        Oestersund Individual 16
## 1281        Oestersund Individual 16
## 1282        Oestersund Individual 16
## 1283        Oestersund Individual 16
## 1284        Oestersund Individual 16
## 1285        Oestersund Individual 16
## 1286        Oestersund Individual 16
## 1287        Oestersund Individual 16
## 1288        Oestersund Individual 16
## 1289        Oestersund Individual 16
## 1290        Oestersund Individual 16
## 1291        Oestersund Individual 16
## 1292        Oestersund    Pursuit 17
## 1293        Oestersund    Pursuit 17
## 1294        Oestersund    Pursuit 17
## 1295        Oestersund    Pursuit 17
## 1296        Oestersund    Pursuit 17
## 1297        Oestersund    Pursuit 17
## 1298        Oestersund    Pursuit 17
## 1299        Oestersund    Pursuit 17
## 1300        Oestersund    Pursuit 17
## 1301        Oestersund    Pursuit 17
## 1302        Oestersund    Pursuit 17
## 1303        Oestersund    Pursuit 17
## 1304        Oestersund    Pursuit 17
## 1305        Oestersund    Pursuit 17
## 1306        Oestersund    Pursuit 17
## 1307        Oestersund    Pursuit 17
## 1308        Oestersund    Pursuit 17
## 1309        Oestersund    Pursuit 17
## 1310        Oestersund    Pursuit 17
## 1311        Oestersund    Pursuit 17
## 1312        Oestersund    Pursuit 17
## 1313        Oestersund    Pursuit 17
## 1314        Oestersund    Pursuit 17
## 1315        Oestersund    Pursuit 17
## 1316        Oestersund    Pursuit 17
## 1317        Oestersund    Pursuit 17
## 1318        Oestersund    Pursuit 17
## 1319        Oestersund    Pursuit 17
## 1320        Oestersund    Pursuit 17
## 1321        Oestersund    Pursuit 17
## 1322        Oestersund    Pursuit 17
## 1323        Oestersund    Pursuit 17
## 1324        Oestersund    Pursuit 17
## 1325        Oestersund    Pursuit 17
## 1326        Oestersund    Pursuit 17
## 1327        Oestersund    Pursuit 17
## 1328        Oestersund    Pursuit 17
## 1329        Oestersund    Pursuit 17
## 1330        Oestersund    Pursuit 17
## 1331        Oestersund    Pursuit 17
## 1332        Oestersund    Pursuit 17
## 1333        Oestersund    Pursuit 17
## 1334        Oestersund    Pursuit 17
## 1335        Oestersund    Pursuit 17
## 1336        Oestersund    Pursuit 17
## 1337        Oestersund    Pursuit 17
## 1338        Oestersund    Pursuit 17
## 1339        Oestersund    Pursuit 17
## 1340        Oestersund    Pursuit 17
## 1341        Oestersund    Pursuit 17
## 1342        Oestersund    Pursuit 17
## 1343        Oestersund    Pursuit 17
## 1344        Oestersund    Pursuit 17
## 1345        Oestersund    Pursuit 17
## 1346        Oestersund    Pursuit 17
## 1347        Oestersund    Pursuit 17
## 1348        Oestersund    Pursuit 17
## 1349        Oestersund    Pursuit 17
## 1350        Oestersund    Pursuit 17
## 1351 Oslo_Holmenkollen     Sprint 20
## 1352 Oslo_Holmenkollen     Sprint 20
## 1353 Oslo_Holmenkollen     Sprint 20
## 1354 Oslo_Holmenkollen     Sprint 20
## 1355 Oslo_Holmenkollen     Sprint 20
## 1356 Oslo_Holmenkollen     Sprint 20
## 1357 Oslo_Holmenkollen     Sprint 20
## 1358 Oslo_Holmenkollen     Sprint 20
## 1359 Oslo_Holmenkollen     Sprint 20
## 1360 Oslo_Holmenkollen     Sprint 20
## 1361 Oslo_Holmenkollen     Sprint 20
## 1362 Oslo_Holmenkollen     Sprint 20
## 1363 Oslo_Holmenkollen     Sprint 20
## 1364 Oslo_Holmenkollen     Sprint 20
## 1365 Oslo_Holmenkollen     Sprint 20
## 1366 Oslo_Holmenkollen     Sprint 20
## 1367 Oslo_Holmenkollen     Sprint 20
## 1368 Oslo_Holmenkollen     Sprint 20
## 1369 Oslo_Holmenkollen     Sprint 20
## 1370 Oslo_Holmenkollen     Sprint 20
## 1371 Oslo_Holmenkollen     Sprint 20
## 1372 Oslo_Holmenkollen     Sprint 20
## 1373 Oslo_Holmenkollen     Sprint 20
## 1374 Oslo_Holmenkollen     Sprint 20
## 1375 Oslo_Holmenkollen     Sprint 20
## 1376 Oslo_Holmenkollen     Sprint 20
## 1377 Oslo_Holmenkollen     Sprint 20
## 1378 Oslo_Holmenkollen     Sprint 20
## 1379 Oslo_Holmenkollen     Sprint 20
## 1380 Oslo_Holmenkollen     Sprint 20
## 1381 Oslo_Holmenkollen     Sprint 20
## 1382 Oslo_Holmenkollen     Sprint 20
## 1383 Oslo_Holmenkollen     Sprint 20
## 1384 Oslo_Holmenkollen     Sprint 20
## 1385 Oslo_Holmenkollen     Sprint 20
## 1386 Oslo_Holmenkollen     Sprint 20
## 1387 Oslo_Holmenkollen     Sprint 20
## 1388 Oslo_Holmenkollen     Sprint 20
## 1389 Oslo_Holmenkollen     Sprint 20
## 1390 Oslo_Holmenkollen     Sprint 20
## 1391 Oslo_Holmenkollen     Sprint 20
## 1392 Oslo_Holmenkollen     Sprint 20
## 1393 Oslo_Holmenkollen     Sprint 20
## 1394 Oslo_Holmenkollen     Sprint 20
## 1395 Oslo_Holmenkollen     Sprint 20
## 1396 Oslo_Holmenkollen     Sprint 20
## 1397 Oslo_Holmenkollen     Sprint 20
## 1398 Oslo_Holmenkollen     Sprint 20
## 1399 Oslo_Holmenkollen     Sprint 20
## 1400 Oslo_Holmenkollen     Sprint 20
## 1401 Oslo_Holmenkollen     Sprint 20
## 1402 Oslo_Holmenkollen     Sprint 20
## 1403 Oslo_Holmenkollen     Sprint 20
## 1404 Oslo_Holmenkollen     Sprint 20
## 1405 Oslo_Holmenkollen     Sprint 20
## 1406 Oslo_Holmenkollen     Sprint 20
## 1407 Oslo_Holmenkollen     Sprint 20
## 1408 Oslo_Holmenkollen     Sprint 20
## 1409 Oslo_Holmenkollen     Sprint 20
## 1410 Oslo_Holmenkollen     Sprint 20
## 1411 Oslo_Holmenkollen     Sprint 20
## 1412 Oslo_Holmenkollen     Sprint 20
## 1413 Oslo_Holmenkollen     Sprint 20
## 1414 Oslo_Holmenkollen     Sprint 20
## 1415 Oslo_Holmenkollen     Sprint 20
## 1416 Oslo_Holmenkollen     Sprint 20
## 1417 Oslo_Holmenkollen     Sprint 20
## 1418 Oslo_Holmenkollen     Sprint 20
## 1419 Oslo_Holmenkollen     Sprint 20
## 1420 Oslo_Holmenkollen     Sprint 20
## 1421 Oslo_Holmenkollen     Sprint 20
## 1422 Oslo_Holmenkollen     Sprint 20
## 1423 Oslo_Holmenkollen     Sprint 20
## 1424 Oslo_Holmenkollen     Sprint 20
## 1425 Oslo_Holmenkollen     Sprint 20
## 1426 Oslo_Holmenkollen     Sprint 20
## 1427 Oslo_Holmenkollen     Sprint 20
## 1428 Oslo_Holmenkollen     Sprint 20
## 1429 Oslo_Holmenkollen     Sprint 20
## 1430 Oslo_Holmenkollen     Sprint 20
## 1431 Oslo_Holmenkollen     Sprint 20
## 1432 Oslo_Holmenkollen     Sprint 20
## 1433 Oslo_Holmenkollen     Sprint 20
## 1434 Oslo_Holmenkollen     Sprint 20
## 1435 Oslo_Holmenkollen     Sprint 20
## 1436 Oslo_Holmenkollen     Sprint 20
## 1437 Oslo_Holmenkollen     Sprint 20
## 1438 Oslo_Holmenkollen     Sprint 20
## 1439 Oslo_Holmenkollen     Sprint 20
## 1440 Oslo_Holmenkollen     Sprint 20
## 1441 Oslo_Holmenkollen     Sprint 20
## 1442 Oslo_Holmenkollen     Sprint 20
## 1443 Oslo_Holmenkollen     Sprint 20
## 1444 Oslo_Holmenkollen     Sprint 20
## 1445 Oslo_Holmenkollen     Sprint 20
## 1446 Oslo_Holmenkollen     Sprint 20
## 1447 Oslo_Holmenkollen     Sprint 20
## 1448 Oslo_Holmenkollen Individual 19
## 1449 Oslo_Holmenkollen Individual 19
## 1450 Oslo_Holmenkollen Individual 19
## 1451 Oslo_Holmenkollen Individual 19
## 1452 Oslo_Holmenkollen Individual 19
## 1453 Oslo_Holmenkollen Individual 19
## 1454 Oslo_Holmenkollen Individual 19
## 1455 Oslo_Holmenkollen Individual 19
## 1456 Oslo_Holmenkollen Individual 19
## 1457 Oslo_Holmenkollen Individual 19
## 1458 Oslo_Holmenkollen Individual 19
## 1459 Oslo_Holmenkollen Individual 19
## 1460 Oslo_Holmenkollen Individual 19
## 1461 Oslo_Holmenkollen Individual 19
## 1462 Oslo_Holmenkollen Individual 19
## 1463 Oslo_Holmenkollen Individual 19
## 1464 Oslo_Holmenkollen Individual 19
## 1465 Oslo_Holmenkollen Individual 19
## 1466 Oslo_Holmenkollen Individual 19
## 1467 Oslo_Holmenkollen Individual 19
## 1468 Oslo_Holmenkollen Individual 19
## 1469 Oslo_Holmenkollen Individual 19
## 1470 Oslo_Holmenkollen Individual 19
## 1471 Oslo_Holmenkollen Individual 19
## 1472 Oslo_Holmenkollen Individual 19
## 1473 Oslo_Holmenkollen Individual 19
## 1474 Oslo_Holmenkollen Individual 19
## 1475 Oslo_Holmenkollen Individual 19
## 1476 Oslo_Holmenkollen Individual 19
## 1477 Oslo_Holmenkollen Individual 19
## 1478 Oslo_Holmenkollen Individual 19
## 1479 Oslo_Holmenkollen Individual 19
## 1480 Oslo_Holmenkollen Individual 19
## 1481 Oslo_Holmenkollen Individual 19
## 1482 Oslo_Holmenkollen Individual 19
## 1483 Oslo_Holmenkollen Individual 19
## 1484 Oslo_Holmenkollen Individual 19
## 1485 Oslo_Holmenkollen Individual 19
## 1486 Oslo_Holmenkollen Individual 19
## 1487 Oslo_Holmenkollen Individual 19
## 1488 Oslo_Holmenkollen Individual 19
## 1489 Oslo_Holmenkollen Individual 19
## 1490 Oslo_Holmenkollen Individual 19
## 1491 Oslo_Holmenkollen Individual 19
## 1492 Oslo_Holmenkollen Individual 19
## 1493 Oslo_Holmenkollen Individual 19
## 1494 Oslo_Holmenkollen Individual 19
## 1495 Oslo_Holmenkollen Individual 19
## 1496 Oslo_Holmenkollen Individual 19
## 1497 Oslo_Holmenkollen Individual 19
## 1498 Oslo_Holmenkollen Individual 19
## 1499 Oslo_Holmenkollen Individual 19
## 1500 Oslo_Holmenkollen Individual 19
## 1501 Oslo_Holmenkollen Individual 19
## 1502 Oslo_Holmenkollen Individual 19
## 1503 Oslo_Holmenkollen Individual 19
## 1504 Oslo_Holmenkollen Individual 19
## 1505 Oslo_Holmenkollen Individual 19
## 1506 Oslo_Holmenkollen Individual 19
## 1507 Oslo_Holmenkollen Individual 19
## 1508 Oslo_Holmenkollen Individual 19
## 1509 Oslo_Holmenkollen Individual 19
## 1510 Oslo_Holmenkollen Individual 19
## 1511 Oslo_Holmenkollen Individual 19
## 1512 Oslo_Holmenkollen Individual 19
## 1513 Oslo_Holmenkollen Individual 19
## 1514 Oslo_Holmenkollen Individual 19
## 1515 Oslo_Holmenkollen Individual 19
## 1516 Oslo_Holmenkollen Individual 19
## 1517 Oslo_Holmenkollen Individual 19
## 1518 Oslo_Holmenkollen Individual 19
## 1519 Oslo_Holmenkollen Individual 19
## 1520 Oslo_Holmenkollen Individual 19
## 1521 Oslo_Holmenkollen Individual 19
## 1522 Oslo_Holmenkollen Individual 19
## 1523 Oslo_Holmenkollen Individual 19
## 1524 Oslo_Holmenkollen Individual 19
## 1525 Oslo_Holmenkollen Individual 19
## 1526 Oslo_Holmenkollen Individual 19
## 1527 Oslo_Holmenkollen Individual 19
## 1528 Oslo_Holmenkollen Individual 19
## 1529 Oslo_Holmenkollen Individual 19
## 1530 Oslo_Holmenkollen Individual 19
## 1531 Oslo_Holmenkollen Individual 19
## 1532 Oslo_Holmenkollen Individual 19
## 1533 Oslo_Holmenkollen Individual 19
## 1534 Oslo_Holmenkollen Individual 19
## 1535 Oslo_Holmenkollen Individual 19
## 1536 Oslo_Holmenkollen Individual 19
## 1537 Oslo_Holmenkollen Individual 19
## 1538 Oslo_Holmenkollen Individual 19
## 1539 Oslo_Holmenkollen Individual 19
## 1540 Oslo_Holmenkollen Individual 19
## 1541 Oslo_Holmenkollen Individual 19
## 1542          Pokljuka     Sprint 23
## 1543          Pokljuka     Sprint 23
## 1544          Pokljuka     Sprint 23
## 1545          Pokljuka     Sprint 23
## 1546          Pokljuka     Sprint 23
## 1547          Pokljuka     Sprint 23
## 1548          Pokljuka     Sprint 23
## 1549          Pokljuka     Sprint 23
## 1550          Pokljuka     Sprint 23
## 1551          Pokljuka     Sprint 23
## 1552          Pokljuka     Sprint 23
## 1553          Pokljuka     Sprint 23
## 1554          Pokljuka     Sprint 23
## 1555          Pokljuka     Sprint 23
## 1556          Pokljuka     Sprint 23
## 1557          Pokljuka     Sprint 23
## 1558          Pokljuka     Sprint 23
## 1559          Pokljuka     Sprint 23
## 1560          Pokljuka     Sprint 23
## 1561          Pokljuka     Sprint 23
## 1562          Pokljuka     Sprint 23
## 1563          Pokljuka     Sprint 23
## 1564          Pokljuka     Sprint 23
## 1565          Pokljuka     Sprint 23
## 1566          Pokljuka     Sprint 23
## 1567          Pokljuka     Sprint 23
## 1568          Pokljuka     Sprint 23
## 1569          Pokljuka     Sprint 23
## 1570          Pokljuka     Sprint 23
## 1571          Pokljuka     Sprint 23
## 1572          Pokljuka     Sprint 23
## 1573          Pokljuka     Sprint 23
## 1574          Pokljuka     Sprint 23
## 1575          Pokljuka     Sprint 23
## 1576          Pokljuka     Sprint 23
## 1577          Pokljuka     Sprint 23
## 1578          Pokljuka     Sprint 23
## 1579          Pokljuka     Sprint 23
## 1580          Pokljuka     Sprint 23
## 1581          Pokljuka     Sprint 23
## 1582          Pokljuka     Sprint 23
## 1583          Pokljuka     Sprint 23
## 1584          Pokljuka     Sprint 23
## 1585          Pokljuka     Sprint 23
## 1586          Pokljuka     Sprint 23
## 1587          Pokljuka     Sprint 23
## 1588          Pokljuka     Sprint 23
## 1589          Pokljuka     Sprint 23
## 1590          Pokljuka     Sprint 23
## 1591          Pokljuka     Sprint 23
## 1592          Pokljuka     Sprint 23
## 1593          Pokljuka     Sprint 23
## 1594          Pokljuka     Sprint 23
## 1595          Pokljuka     Sprint 23
## 1596          Pokljuka     Sprint 23
## 1597          Pokljuka     Sprint 23
## 1598          Pokljuka     Sprint 23
## 1599          Pokljuka     Sprint 23
## 1600          Pokljuka     Sprint 23
## 1601          Pokljuka     Sprint 23
## 1602          Pokljuka     Sprint 23
## 1603          Pokljuka     Sprint 23
## 1604          Pokljuka     Sprint 23
## 1605          Pokljuka     Sprint 23
## 1606          Pokljuka     Sprint 23
## 1607          Pokljuka     Sprint 23
## 1608          Pokljuka     Sprint 23
## 1609          Pokljuka     Sprint 23
## 1610          Pokljuka     Sprint 23
## 1611          Pokljuka     Sprint 23
## 1612          Pokljuka     Sprint 23
## 1613          Pokljuka     Sprint 23
## 1614          Pokljuka     Sprint 23
## 1615          Pokljuka     Sprint 23
## 1616          Pokljuka     Sprint 23
## 1617          Pokljuka     Sprint 23
## 1618          Pokljuka     Sprint 23
## 1619          Pokljuka     Sprint 23
## 1620          Pokljuka     Sprint 23
## 1621          Pokljuka     Sprint 23
## 1622          Pokljuka     Sprint 23
## 1623          Pokljuka     Sprint 23
## 1624          Pokljuka     Sprint 23
## 1625          Pokljuka     Sprint 23
## 1626          Pokljuka     Sprint 23
## 1627          Pokljuka     Sprint 23
## 1628          Pokljuka     Sprint 23
## 1629          Pokljuka     Sprint 23
## 1630          Pokljuka     Sprint 23
## 1631          Pokljuka     Sprint 23
## 1632          Pokljuka     Sprint 23
## 1633          Pokljuka     Sprint 23
## 1634          Pokljuka     Sprint 23
## 1635          Pokljuka     Sprint 23
## 1636          Pokljuka     Sprint 23
## 1637          Pokljuka     Sprint 23
## 1638          Pokljuka     Sprint 23
## 1639          Pokljuka     Sprint 23
## 1640          Pokljuka     Sprint 23
## 1641          Pokljuka     Sprint 23
## 1642          Pokljuka     Sprint 23
## 1643          Pokljuka     Sprint 23
## 1644          Pokljuka Mass start 21
## 1645          Pokljuka Mass start 21
## 1646          Pokljuka Mass start 21
## 1647          Pokljuka Mass start 21
## 1648          Pokljuka Mass start 21
## 1649          Pokljuka Mass start 21
## 1650          Pokljuka Mass start 21
## 1651          Pokljuka Mass start 21
## 1652          Pokljuka Mass start 21
## 1653          Pokljuka Mass start 21
## 1654          Pokljuka Mass start 21
## 1655          Pokljuka Mass start 21
## 1656          Pokljuka Mass start 21
## 1657          Pokljuka Mass start 21
## 1658          Pokljuka Mass start 21
## 1659          Pokljuka Mass start 21
## 1660          Pokljuka Mass start 21
## 1661          Pokljuka Mass start 21
## 1662          Pokljuka Mass start 21
## 1663          Pokljuka Mass start 21
## 1664          Pokljuka Mass start 21
## 1665          Pokljuka Mass start 21
## 1666          Pokljuka Mass start 21
## 1667          Pokljuka Mass start 21
## 1668          Pokljuka Mass start 21
## 1669          Pokljuka Mass start 21
## 1670          Pokljuka Mass start 21
## 1671          Pokljuka Mass start 21
## 1672          Pokljuka Mass start 21
## 1673          Pokljuka Mass start 21
## 1674          Pokljuka    Pursuit 22
## 1675          Pokljuka    Pursuit 22
## 1676          Pokljuka    Pursuit 22
## 1677          Pokljuka    Pursuit 22
## 1678          Pokljuka    Pursuit 22
## 1679          Pokljuka    Pursuit 22
## 1680          Pokljuka    Pursuit 22
## 1681          Pokljuka    Pursuit 22
## 1682          Pokljuka    Pursuit 22
## 1683          Pokljuka    Pursuit 22
## 1684          Pokljuka    Pursuit 22
## 1685          Pokljuka    Pursuit 22
## 1686          Pokljuka    Pursuit 22
## 1687          Pokljuka    Pursuit 22
## 1688          Pokljuka    Pursuit 22
## 1689          Pokljuka    Pursuit 22
## 1690          Pokljuka    Pursuit 22
## 1691          Pokljuka    Pursuit 22
## 1692          Pokljuka    Pursuit 22
## 1693          Pokljuka    Pursuit 22
## 1694          Pokljuka    Pursuit 22
## 1695          Pokljuka    Pursuit 22
## 1696          Pokljuka    Pursuit 22
## 1697          Pokljuka    Pursuit 22
## 1698          Pokljuka    Pursuit 22
## 1699          Pokljuka    Pursuit 22
## 1700          Pokljuka    Pursuit 22
## 1701          Pokljuka    Pursuit 22
## 1702          Pokljuka    Pursuit 22
## 1703          Pokljuka    Pursuit 22
## 1704          Pokljuka    Pursuit 22
## 1705          Pokljuka    Pursuit 22
## 1706          Pokljuka    Pursuit 22
## 1707          Pokljuka    Pursuit 22
## 1708          Pokljuka    Pursuit 22
## 1709          Pokljuka    Pursuit 22
## 1710          Pokljuka    Pursuit 22
## 1711          Pokljuka    Pursuit 22
## 1712          Pokljuka    Pursuit 22
## 1713          Pokljuka    Pursuit 22
## 1714          Pokljuka    Pursuit 22
## 1715          Pokljuka    Pursuit 22
## 1716          Pokljuka    Pursuit 22
## 1717          Pokljuka    Pursuit 22
## 1718          Pokljuka    Pursuit 22
## 1719          Pokljuka    Pursuit 22
## 1720          Pokljuka    Pursuit 22
## 1721          Pokljuka    Pursuit 22
## 1722          Pokljuka    Pursuit 22
## 1723          Pokljuka    Pursuit 22
## 1724          Pokljuka    Pursuit 22
## 1725          Pokljuka    Pursuit 22
## 1726          Pokljuka    Pursuit 22
## 1727          Pokljuka    Pursuit 22
## 1728          Pokljuka    Pursuit 22
## 1729          Pokljuka    Pursuit 22
## 1730          Pokljuka    Pursuit 22
## 1731          Pokljuka    Pursuit 22
## 1732          Pokljuka    Pursuit 22
## 1733        Ruhpolding     Sprint 25
## 1734        Ruhpolding     Sprint 25
## 1735        Ruhpolding     Sprint 25
## 1736        Ruhpolding     Sprint 25
## 1737        Ruhpolding     Sprint 25
## 1738        Ruhpolding     Sprint 25
## 1739        Ruhpolding     Sprint 25
## 1740        Ruhpolding     Sprint 25
## 1741        Ruhpolding     Sprint 25
## 1742        Ruhpolding     Sprint 25
## 1743        Ruhpolding     Sprint 25
## 1744        Ruhpolding     Sprint 25
## 1745        Ruhpolding     Sprint 25
## 1746        Ruhpolding     Sprint 25
## 1747        Ruhpolding     Sprint 25
## 1748        Ruhpolding     Sprint 25
## 1749        Ruhpolding     Sprint 25
## 1750        Ruhpolding     Sprint 25
## 1751        Ruhpolding     Sprint 25
## 1752        Ruhpolding     Sprint 25
## 1753        Ruhpolding     Sprint 25
## 1754        Ruhpolding     Sprint 25
## 1755        Ruhpolding     Sprint 25
## 1756        Ruhpolding     Sprint 25
## 1757        Ruhpolding     Sprint 25
## 1758        Ruhpolding     Sprint 25
## 1759        Ruhpolding     Sprint 25
## 1760        Ruhpolding     Sprint 25
## 1761        Ruhpolding     Sprint 25
## 1762        Ruhpolding     Sprint 25
## 1763        Ruhpolding     Sprint 25
## 1764        Ruhpolding     Sprint 25
## 1765        Ruhpolding     Sprint 25
## 1766        Ruhpolding     Sprint 25
## 1767        Ruhpolding     Sprint 25
## 1768        Ruhpolding     Sprint 25
## 1769        Ruhpolding     Sprint 25
## 1770        Ruhpolding     Sprint 25
## 1771        Ruhpolding     Sprint 25
## 1772        Ruhpolding     Sprint 25
## 1773        Ruhpolding     Sprint 25
## 1774        Ruhpolding     Sprint 25
## 1775        Ruhpolding     Sprint 25
## 1776        Ruhpolding     Sprint 25
## 1777        Ruhpolding     Sprint 25
## 1778        Ruhpolding     Sprint 25
## 1779        Ruhpolding     Sprint 25
## 1780        Ruhpolding     Sprint 25
## 1781        Ruhpolding     Sprint 25
## 1782        Ruhpolding     Sprint 25
## 1783        Ruhpolding     Sprint 25
## 1784        Ruhpolding     Sprint 25
## 1785        Ruhpolding     Sprint 25
## 1786        Ruhpolding     Sprint 25
## 1787        Ruhpolding     Sprint 25
## 1788        Ruhpolding     Sprint 25
## 1789        Ruhpolding     Sprint 25
## 1790        Ruhpolding     Sprint 25
## 1791        Ruhpolding     Sprint 25
## 1792        Ruhpolding     Sprint 25
## 1793        Ruhpolding     Sprint 25
## 1794        Ruhpolding     Sprint 25
## 1795        Ruhpolding     Sprint 25
## 1796        Ruhpolding     Sprint 25
## 1797        Ruhpolding     Sprint 25
## 1798        Ruhpolding     Sprint 25
## 1799        Ruhpolding     Sprint 25
## 1800        Ruhpolding     Sprint 25
## 1801        Ruhpolding     Sprint 25
## 1802        Ruhpolding     Sprint 25
## 1803        Ruhpolding     Sprint 25
## 1804        Ruhpolding     Sprint 25
## 1805        Ruhpolding     Sprint 25
## 1806        Ruhpolding     Sprint 25
## 1807        Ruhpolding     Sprint 25
## 1808        Ruhpolding     Sprint 25
## 1809        Ruhpolding     Sprint 25
## 1810        Ruhpolding     Sprint 25
## 1811        Ruhpolding     Sprint 25
## 1812        Ruhpolding     Sprint 25
## 1813        Ruhpolding     Sprint 25
## 1814        Ruhpolding     Sprint 25
## 1815        Ruhpolding     Sprint 25
## 1816        Ruhpolding     Sprint 25
## 1817        Ruhpolding     Sprint 25
## 1818        Ruhpolding     Sprint 25
## 1819        Ruhpolding     Sprint 25
## 1820        Ruhpolding     Sprint 25
## 1821        Ruhpolding     Sprint 25
## 1822        Ruhpolding     Sprint 25
## 1823        Ruhpolding     Sprint 25
## 1824        Ruhpolding     Sprint 25
## 1825        Ruhpolding     Sprint 25
## 1826        Ruhpolding     Sprint 25
## 1827        Ruhpolding     Sprint 25
## 1828        Ruhpolding     Sprint 25
## 1829        Ruhpolding     Sprint 25
## 1830        Ruhpolding     Sprint 25
## 1831        Ruhpolding     Sprint 25
## 1832        Ruhpolding Mass start 24
## 1833        Ruhpolding Mass start 24
## 1834        Ruhpolding Mass start 24
## 1835        Ruhpolding Mass start 24
## 1836        Ruhpolding Mass start 24
## 1837        Ruhpolding Mass start 24
## 1838        Ruhpolding Mass start 24
## 1839        Ruhpolding Mass start 24
## 1840        Ruhpolding Mass start 24
## 1841        Ruhpolding Mass start 24
## 1842        Ruhpolding Mass start 24
## 1843        Ruhpolding Mass start 24
## 1844        Ruhpolding Mass start 24
## 1845        Ruhpolding Mass start 24
## 1846        Ruhpolding Mass start 24
## 1847        Ruhpolding Mass start 24
## 1848        Ruhpolding Mass start 24
## 1849        Ruhpolding Mass start 24
## 1850        Ruhpolding Mass start 24
## 1851        Ruhpolding Mass start 24
## 1852        Ruhpolding Mass start 24
## 1853        Ruhpolding Mass start 24
## 1854        Ruhpolding Mass start 24
## 1855        Ruhpolding Mass start 24
## 1856        Ruhpolding Mass start 24
## 1857        Ruhpolding Mass start 24
## 1858        Ruhpolding Mass start 24
## 1859        Ruhpolding Mass start 24
## 1860        Ruhpolding Mass start 24
## 1861        Ruhpolding Mass start 24
## 1862        Anterselva     Sprint 27
## 1863        Anterselva     Sprint 27
## 1864        Anterselva     Sprint 27
## 1865        Anterselva     Sprint 27
## 1866        Anterselva     Sprint 27
## 1867        Anterselva     Sprint 27
## 1868        Anterselva     Sprint 27
## 1869        Anterselva     Sprint 27
## 1870        Anterselva     Sprint 27
## 1871        Anterselva     Sprint 27
## 1872        Anterselva     Sprint 27
## 1873        Anterselva     Sprint 27
## 1874        Anterselva     Sprint 27
## 1875        Anterselva     Sprint 27
## 1876        Anterselva     Sprint 27
## 1877        Anterselva     Sprint 27
## 1878        Anterselva     Sprint 27
## 1879        Anterselva     Sprint 27
## 1880        Anterselva     Sprint 27
## 1881        Anterselva     Sprint 27
## 1882        Anterselva     Sprint 27
## 1883        Anterselva     Sprint 27
## 1884        Anterselva     Sprint 27
## 1885        Anterselva     Sprint 27
## 1886        Anterselva     Sprint 27
## 1887        Anterselva     Sprint 27
## 1888        Anterselva     Sprint 27
## 1889        Anterselva     Sprint 27
## 1890        Anterselva     Sprint 27
## 1891        Anterselva     Sprint 27
## 1892        Anterselva     Sprint 27
## 1893        Anterselva     Sprint 27
## 1894        Anterselva     Sprint 27
## 1895        Anterselva     Sprint 27
## 1896        Anterselva     Sprint 27
## 1897        Anterselva     Sprint 27
## 1898        Anterselva     Sprint 27
## 1899        Anterselva     Sprint 27
## 1900        Anterselva     Sprint 27
## 1901        Anterselva     Sprint 27
## 1902        Anterselva     Sprint 27
## 1903        Anterselva     Sprint 27
## 1904        Anterselva     Sprint 27
## 1905        Anterselva     Sprint 27
## 1906        Anterselva     Sprint 27
## 1907        Anterselva     Sprint 27
## 1908        Anterselva     Sprint 27
## 1909        Anterselva     Sprint 27
## 1910        Anterselva     Sprint 27
## 1911        Anterselva     Sprint 27
## 1912        Anterselva     Sprint 27
## 1913        Anterselva     Sprint 27
## 1914        Anterselva     Sprint 27
## 1915        Anterselva     Sprint 27
## 1916        Anterselva     Sprint 27
## 1917        Anterselva     Sprint 27
## 1918        Anterselva     Sprint 27
## 1919        Anterselva     Sprint 27
## 1920        Anterselva     Sprint 27
## 1921        Anterselva     Sprint 27
## 1922        Anterselva     Sprint 27
## 1923        Anterselva     Sprint 27
## 1924        Anterselva     Sprint 27
## 1925        Anterselva     Sprint 27
## 1926        Anterselva     Sprint 27
## 1927        Anterselva     Sprint 27
## 1928        Anterselva     Sprint 27
## 1929        Anterselva     Sprint 27
## 1930        Anterselva     Sprint 27
## 1931        Anterselva     Sprint 27
## 1932        Anterselva     Sprint 27
## 1933        Anterselva     Sprint 27
## 1934        Anterselva     Sprint 27
## 1935        Anterselva     Sprint 27
## 1936        Anterselva     Sprint 27
## 1937        Anterselva     Sprint 27
## 1938        Anterselva     Sprint 27
## 1939        Anterselva     Sprint 27
## 1940        Anterselva     Sprint 27
## 1941        Anterselva     Sprint 27
## 1942        Anterselva     Sprint 27
## 1943        Anterselva     Sprint 27
## 1944        Anterselva     Sprint 27
## 1945        Anterselva     Sprint 27
## 1946        Anterselva     Sprint 27
## 1947        Anterselva     Sprint 27
## 1948        Anterselva     Sprint 27
## 1949        Anterselva     Sprint 27
## 1950        Anterselva     Sprint 27
## 1951        Anterselva     Sprint 27
## 1952        Anterselva     Sprint 27
## 1953        Anterselva     Sprint 27
## 1954        Anterselva     Sprint 27
## 1955        Anterselva     Sprint 27
## 1956        Anterselva     Sprint 27
## 1957        Anterselva     Sprint 27
## 1958        Anterselva     Sprint 27
## 1959        Anterselva     Sprint 27
## 1960        Anterselva     Sprint 27
## 1961        Anterselva     Sprint 27
## 1962        Anterselva     Sprint 27
## 1963        Anterselva     Sprint 27
## 1964        Anterselva     Sprint 27
## 1965        Anterselva     Sprint 27
## 1966        Anterselva     Sprint 27
## 1967        Anterselva     Sprint 27
## 1968        Anterselva    Pursuit 26
## 1969        Anterselva    Pursuit 26
## 1970        Anterselva    Pursuit 26
## 1971        Anterselva    Pursuit 26
## 1972        Anterselva    Pursuit 26
## 1973        Anterselva    Pursuit 26
## 1974        Anterselva    Pursuit 26
## 1975        Anterselva    Pursuit 26
## 1976        Anterselva    Pursuit 26
## 1977        Anterselva    Pursuit 26
## 1978        Anterselva    Pursuit 26
## 1979        Anterselva    Pursuit 26
## 1980        Anterselva    Pursuit 26
## 1981        Anterselva    Pursuit 26
## 1982        Anterselva    Pursuit 26
## 1983        Anterselva    Pursuit 26
## 1984        Anterselva    Pursuit 26
## 1985        Anterselva    Pursuit 26
## 1986        Anterselva    Pursuit 26
## 1987        Anterselva    Pursuit 26
## 1988        Anterselva    Pursuit 26
## 1989        Anterselva    Pursuit 26
## 1990        Anterselva    Pursuit 26
## 1991        Anterselva    Pursuit 26
## 1992        Anterselva    Pursuit 26
## 1993        Anterselva    Pursuit 26
## 1994        Anterselva    Pursuit 26
## 1995        Anterselva    Pursuit 26
## 1996        Anterselva    Pursuit 26
## 1997        Anterselva    Pursuit 26
## 1998        Anterselva    Pursuit 26
## 1999        Anterselva    Pursuit 26
## 2000        Anterselva    Pursuit 26
## 2001        Anterselva    Pursuit 26
## 2002        Anterselva    Pursuit 26
## 2003        Anterselva    Pursuit 26
## 2004        Anterselva    Pursuit 26
## 2005        Anterselva    Pursuit 26
## 2006        Anterselva    Pursuit 26
## 2007        Anterselva    Pursuit 26
## 2008        Anterselva    Pursuit 26
## 2009        Anterselva    Pursuit 26
## 2010        Anterselva    Pursuit 26
## 2011        Anterselva    Pursuit 26
## 2012        Anterselva    Pursuit 26
## 2013        Anterselva    Pursuit 26
## 2014        Anterselva    Pursuit 26
## 2015        Anterselva    Pursuit 26
## 2016        Anterselva    Pursuit 26
## 2017        Anterselva    Pursuit 26
## 2018        Anterselva    Pursuit 26
## 2019        Anterselva    Pursuit 26
## 2020           Canmore     Sprint 29
## 2021           Canmore     Sprint 29
## 2022           Canmore     Sprint 29
## 2023           Canmore     Sprint 29
## 2024           Canmore     Sprint 29
## 2025           Canmore     Sprint 29
## 2026           Canmore     Sprint 29
## 2027           Canmore     Sprint 29
## 2028           Canmore     Sprint 29
## 2029           Canmore     Sprint 29
## 2030           Canmore     Sprint 29
## 2031           Canmore     Sprint 29
## 2032           Canmore     Sprint 29
## 2033           Canmore     Sprint 29
## 2034           Canmore     Sprint 29
## 2035           Canmore     Sprint 29
## 2036           Canmore     Sprint 29
## 2037           Canmore     Sprint 29
## 2038           Canmore     Sprint 29
## 2039           Canmore     Sprint 29
## 2040           Canmore     Sprint 29
## 2041           Canmore     Sprint 29
## 2042           Canmore     Sprint 29
## 2043           Canmore     Sprint 29
## 2044           Canmore     Sprint 29
## 2045           Canmore     Sprint 29
## 2046           Canmore     Sprint 29
## 2047           Canmore     Sprint 29
## 2048           Canmore     Sprint 29
## 2049           Canmore     Sprint 29
## 2050           Canmore     Sprint 29
## 2051           Canmore     Sprint 29
## 2052           Canmore     Sprint 29
## 2053           Canmore     Sprint 29
## 2054           Canmore     Sprint 29
## 2055           Canmore     Sprint 29
## 2056           Canmore     Sprint 29
## 2057           Canmore     Sprint 29
## 2058           Canmore     Sprint 29
## 2059           Canmore     Sprint 29
## 2060           Canmore     Sprint 29
## 2061           Canmore     Sprint 29
## 2062           Canmore     Sprint 29
## 2063           Canmore     Sprint 29
## 2064           Canmore     Sprint 29
## 2065           Canmore     Sprint 29
## 2066           Canmore     Sprint 29
## 2067           Canmore     Sprint 29
## 2068           Canmore     Sprint 29
## 2069           Canmore     Sprint 29
## 2070           Canmore     Sprint 29
## 2071           Canmore     Sprint 29
## 2072           Canmore     Sprint 29
## 2073           Canmore     Sprint 29
## 2074           Canmore     Sprint 29
## 2075           Canmore     Sprint 29
## 2076           Canmore     Sprint 29
## 2077           Canmore     Sprint 29
## 2078           Canmore     Sprint 29
## 2079           Canmore     Sprint 29
## 2080           Canmore     Sprint 29
## 2081           Canmore     Sprint 29
## 2082           Canmore     Sprint 29
## 2083           Canmore     Sprint 29
## 2084           Canmore     Sprint 29
## 2085           Canmore     Sprint 29
## 2086           Canmore     Sprint 29
## 2087           Canmore     Sprint 29
## 2088           Canmore     Sprint 29
## 2089           Canmore     Sprint 29
## 2090           Canmore     Sprint 29
## 2091           Canmore     Sprint 29
## 2092           Canmore     Sprint 29
## 2093           Canmore     Sprint 29
## 2094           Canmore     Sprint 29
## 2095           Canmore     Sprint 29
## 2096           Canmore     Sprint 29
## 2097           Canmore     Sprint 29
## 2098           Canmore     Sprint 29
## 2099           Canmore     Sprint 29
## 2100           Canmore     Sprint 29
## 2101           Canmore     Sprint 29
## 2102           Canmore     Sprint 29
## 2103           Canmore     Sprint 29
## 2104           Canmore     Sprint 29
## 2105           Canmore     Sprint 29
## 2106           Canmore     Sprint 29
## 2107           Canmore Mass start 28
## 2108           Canmore Mass start 28
## 2109           Canmore Mass start 28
## 2110           Canmore Mass start 28
## 2111           Canmore Mass start 28
## 2112           Canmore Mass start 28
## 2113           Canmore Mass start 28
## 2114           Canmore Mass start 28
## 2115           Canmore Mass start 28
## 2116           Canmore Mass start 28
## 2117           Canmore Mass start 28
## 2118           Canmore Mass start 28
## 2119           Canmore Mass start 28
## 2120           Canmore Mass start 28
## 2121           Canmore Mass start 28
## 2122           Canmore Mass start 28
## 2123           Canmore Mass start 28
## 2124           Canmore Mass start 28
## 2125           Canmore Mass start 28
## 2126           Canmore Mass start 28
## 2127           Canmore Mass start 28
## 2128           Canmore Mass start 28
## 2129           Canmore Mass start 28
## 2130           Canmore Mass start 28
## 2131           Canmore Mass start 28
## 2132           Canmore Mass start 28
## 2133           Canmore Mass start 28
## 2134           Canmore Mass start 28
## 2135           Canmore Mass start 28
## 2136           Canmore Mass start 28
## 2137        Hochfilzen     Sprint 31
## 2138        Hochfilzen     Sprint 31
## 2139        Hochfilzen     Sprint 31
## 2140        Hochfilzen     Sprint 31
## 2141        Hochfilzen     Sprint 31
## 2142        Hochfilzen     Sprint 31
## 2143        Hochfilzen     Sprint 31
## 2144        Hochfilzen     Sprint 31
## 2145        Hochfilzen     Sprint 31
## 2146        Hochfilzen     Sprint 31
## 2147        Hochfilzen     Sprint 31
## 2148        Hochfilzen     Sprint 31
## 2149        Hochfilzen     Sprint 31
## 2150        Hochfilzen     Sprint 31
## 2151        Hochfilzen     Sprint 31
## 2152        Hochfilzen     Sprint 31
## 2153        Hochfilzen     Sprint 31
## 2154        Hochfilzen     Sprint 31
## 2155        Hochfilzen     Sprint 31
## 2156        Hochfilzen     Sprint 31
## 2157        Hochfilzen     Sprint 31
## 2158        Hochfilzen     Sprint 31
## 2159        Hochfilzen     Sprint 31
## 2160        Hochfilzen     Sprint 31
## 2161        Hochfilzen     Sprint 31
## 2162        Hochfilzen     Sprint 31
## 2163        Hochfilzen     Sprint 31
## 2164        Hochfilzen     Sprint 31
## 2165        Hochfilzen     Sprint 31
## 2166        Hochfilzen     Sprint 31
## 2167        Hochfilzen     Sprint 31
## 2168        Hochfilzen     Sprint 31
## 2169        Hochfilzen     Sprint 31
## 2170        Hochfilzen     Sprint 31
## 2171        Hochfilzen     Sprint 31
## 2172        Hochfilzen     Sprint 31
## 2173        Hochfilzen     Sprint 31
## 2174        Hochfilzen     Sprint 31
## 2175        Hochfilzen     Sprint 31
## 2176        Hochfilzen     Sprint 31
## 2177        Hochfilzen     Sprint 31
## 2178        Hochfilzen     Sprint 31
## 2179        Hochfilzen     Sprint 31
## 2180        Hochfilzen     Sprint 31
## 2181        Hochfilzen     Sprint 31
## 2182        Hochfilzen     Sprint 31
## 2183        Hochfilzen     Sprint 31
## 2184        Hochfilzen     Sprint 31
## 2185        Hochfilzen     Sprint 31
## 2186        Hochfilzen     Sprint 31
## 2187        Hochfilzen     Sprint 31
## 2188        Hochfilzen     Sprint 31
## 2189        Hochfilzen     Sprint 31
## 2190        Hochfilzen     Sprint 31
## 2191        Hochfilzen     Sprint 31
## 2192        Hochfilzen     Sprint 31
## 2193        Hochfilzen     Sprint 31
## 2194        Hochfilzen     Sprint 31
## 2195        Hochfilzen     Sprint 31
## 2196        Hochfilzen     Sprint 31
## 2197        Hochfilzen     Sprint 31
## 2198        Hochfilzen     Sprint 31
## 2199        Hochfilzen     Sprint 31
## 2200        Hochfilzen     Sprint 31
## 2201        Hochfilzen     Sprint 31
## 2202        Hochfilzen     Sprint 31
## 2203        Hochfilzen     Sprint 31
## 2204        Hochfilzen     Sprint 31
## 2205        Hochfilzen     Sprint 31
## 2206        Hochfilzen     Sprint 31
## 2207        Hochfilzen     Sprint 31
## 2208        Hochfilzen     Sprint 31
## 2209        Hochfilzen     Sprint 31
## 2210        Hochfilzen     Sprint 31
## 2211        Hochfilzen     Sprint 31
## 2212        Hochfilzen     Sprint 31
## 2213        Hochfilzen     Sprint 31
## 2214        Hochfilzen     Sprint 31
## 2215        Hochfilzen     Sprint 31
## 2216        Hochfilzen     Sprint 31
## 2217        Hochfilzen     Sprint 31
## 2218        Hochfilzen     Sprint 31
## 2219        Hochfilzen     Sprint 31
## 2220        Hochfilzen     Sprint 31
## 2221        Hochfilzen     Sprint 31
## 2222        Hochfilzen     Sprint 31
## 2223        Hochfilzen     Sprint 31
## 2224        Hochfilzen     Sprint 31
## 2225        Hochfilzen     Sprint 31
## 2226        Hochfilzen     Sprint 31
## 2227        Hochfilzen     Sprint 31
## 2228        Hochfilzen     Sprint 31
## 2229        Hochfilzen     Sprint 31
## 2230        Hochfilzen     Sprint 31
## 2231        Hochfilzen     Sprint 31
## 2232        Hochfilzen     Sprint 31
## 2233        Hochfilzen     Sprint 31
## 2234        Hochfilzen     Sprint 31
## 2235        Hochfilzen     Sprint 31
## 2236        Hochfilzen     Sprint 31
## 2237        Hochfilzen     Sprint 31
## 2238        Hochfilzen     Sprint 31
## 2239        Hochfilzen     Sprint 31
## 2240        Hochfilzen     Sprint 31
## 2241        Hochfilzen     Sprint 31
## 2242        Hochfilzen     Sprint 31
## 2243        Hochfilzen     Sprint 31
## 2244        Hochfilzen     Sprint 31
## 2245        Hochfilzen    Pursuit 30
## 2246        Hochfilzen    Pursuit 30
## 2247        Hochfilzen    Pursuit 30
## 2248        Hochfilzen    Pursuit 30
## 2249        Hochfilzen    Pursuit 30
## 2250        Hochfilzen    Pursuit 30
## 2251        Hochfilzen    Pursuit 30
## 2252        Hochfilzen    Pursuit 30
## 2253        Hochfilzen    Pursuit 30
## 2254        Hochfilzen    Pursuit 30
## 2255        Hochfilzen    Pursuit 30
## 2256        Hochfilzen    Pursuit 30
## 2257        Hochfilzen    Pursuit 30
## 2258        Hochfilzen    Pursuit 30
## 2259        Hochfilzen    Pursuit 30
## 2260        Hochfilzen    Pursuit 30
## 2261        Hochfilzen    Pursuit 30
## 2262        Hochfilzen    Pursuit 30
## 2263        Hochfilzen    Pursuit 30
## 2264        Hochfilzen    Pursuit 30
## 2265        Hochfilzen    Pursuit 30
## 2266        Hochfilzen    Pursuit 30
## 2267        Hochfilzen    Pursuit 30
## 2268        Hochfilzen    Pursuit 30
## 2269        Hochfilzen    Pursuit 30
## 2270        Hochfilzen    Pursuit 30
## 2271        Hochfilzen    Pursuit 30
## 2272        Hochfilzen    Pursuit 30
## 2273        Hochfilzen    Pursuit 30
## 2274        Hochfilzen    Pursuit 30
## 2275        Hochfilzen    Pursuit 30
## 2276        Hochfilzen    Pursuit 30
## 2277        Hochfilzen    Pursuit 30
## 2278        Hochfilzen    Pursuit 30
## 2279        Hochfilzen    Pursuit 30
## 2280        Hochfilzen    Pursuit 30
## 2281        Hochfilzen    Pursuit 30
## 2282        Hochfilzen    Pursuit 30
## 2283        Hochfilzen    Pursuit 30
## 2284        Hochfilzen    Pursuit 30
## 2285        Hochfilzen    Pursuit 30
## 2286        Hochfilzen    Pursuit 30
## 2287        Hochfilzen    Pursuit 30
## 2288        Hochfilzen    Pursuit 30
## 2289        Hochfilzen    Pursuit 30
## 2290        Hochfilzen    Pursuit 30
## 2291        Hochfilzen    Pursuit 30
## 2292        Hochfilzen    Pursuit 30
## 2293        Hochfilzen    Pursuit 30
## 2294        Hochfilzen    Pursuit 30
## 2295        Hochfilzen    Pursuit 30
## 2296        Hochfilzen    Pursuit 30
## 2297        Hochfilzen    Pursuit 30
## 2298        Hochfilzen    Pursuit 30
## 2299        Hochfilzen    Pursuit 30
## 2300        Hochfilzen    Pursuit 30
## 2301        Hochfilzen    Pursuit 30
## 2302        Hochfilzen    Pursuit 30
## 2303        Hochfilzen    Pursuit 30
## 2304   Khanty-Mansiysk     Sprint 33
## 2305   Khanty-Mansiysk     Sprint 33
## 2306   Khanty-Mansiysk     Sprint 33
## 2307   Khanty-Mansiysk     Sprint 33
## 2308   Khanty-Mansiysk     Sprint 33
## 2309   Khanty-Mansiysk     Sprint 33
## 2310   Khanty-Mansiysk     Sprint 33
## 2311   Khanty-Mansiysk     Sprint 33
## 2312   Khanty-Mansiysk     Sprint 33
## 2313   Khanty-Mansiysk     Sprint 33
## 2314   Khanty-Mansiysk     Sprint 33
## 2315   Khanty-Mansiysk     Sprint 33
## 2316   Khanty-Mansiysk     Sprint 33
## 2317   Khanty-Mansiysk     Sprint 33
## 2318   Khanty-Mansiysk     Sprint 33
## 2319   Khanty-Mansiysk     Sprint 33
## 2320   Khanty-Mansiysk     Sprint 33
## 2321   Khanty-Mansiysk     Sprint 33
## 2322   Khanty-Mansiysk     Sprint 33
## 2323   Khanty-Mansiysk     Sprint 33
## 2324   Khanty-Mansiysk     Sprint 33
## 2325   Khanty-Mansiysk     Sprint 33
## 2326   Khanty-Mansiysk     Sprint 33
## 2327   Khanty-Mansiysk     Sprint 33
## 2328   Khanty-Mansiysk     Sprint 33
## 2329   Khanty-Mansiysk     Sprint 33
## 2330   Khanty-Mansiysk     Sprint 33
## 2331   Khanty-Mansiysk     Sprint 33
## 2332   Khanty-Mansiysk     Sprint 33
## 2333   Khanty-Mansiysk     Sprint 33
## 2334   Khanty-Mansiysk     Sprint 33
## 2335   Khanty-Mansiysk     Sprint 33
## 2336   Khanty-Mansiysk     Sprint 33
## 2337   Khanty-Mansiysk     Sprint 33
## 2338   Khanty-Mansiysk     Sprint 33
## 2339   Khanty-Mansiysk     Sprint 33
## 2340   Khanty-Mansiysk     Sprint 33
## 2341   Khanty-Mansiysk     Sprint 33
## 2342   Khanty-Mansiysk     Sprint 33
## 2343   Khanty-Mansiysk     Sprint 33
## 2344   Khanty-Mansiysk     Sprint 33
## 2345   Khanty-Mansiysk     Sprint 33
## 2346   Khanty-Mansiysk     Sprint 33
## 2347   Khanty-Mansiysk     Sprint 33
## 2348   Khanty-Mansiysk     Sprint 33
## 2349   Khanty-Mansiysk     Sprint 33
## 2350   Khanty-Mansiysk     Sprint 33
## 2351   Khanty-Mansiysk     Sprint 33
## 2352   Khanty-Mansiysk     Sprint 33
## 2353   Khanty-Mansiysk     Sprint 33
## 2354   Khanty-Mansiysk     Sprint 33
## 2355   Khanty-Mansiysk     Sprint 33
## 2356   Khanty-Mansiysk     Sprint 33
## 2357   Khanty-Mansiysk     Sprint 33
## 2358   Khanty-Mansiysk     Sprint 33
## 2359   Khanty-Mansiysk     Sprint 33
## 2360   Khanty-Mansiysk     Sprint 33
## 2361   Khanty-Mansiysk     Sprint 33
## 2362   Khanty-Mansiysk     Sprint 33
## 2363   Khanty-Mansiysk     Sprint 33
## 2364   Khanty-Mansiysk     Sprint 33
## 2365   Khanty-Mansiysk     Sprint 33
## 2366   Khanty-Mansiysk     Sprint 33
## 2367   Khanty-Mansiysk     Sprint 33
## 2368   Khanty-Mansiysk     Sprint 33
## 2369   Khanty-Mansiysk     Sprint 33
## 2370   Khanty-Mansiysk     Sprint 33
## 2371   Khanty-Mansiysk     Sprint 33
## 2372   Khanty-Mansiysk     Sprint 33
## 2373   Khanty-Mansiysk     Sprint 33
## 2374   Khanty-Mansiysk     Sprint 33
## 2375   Khanty-Mansiysk     Sprint 33
## 2376   Khanty-Mansiysk     Sprint 33
## 2377   Khanty-Mansiysk     Sprint 33
## 2378   Khanty-Mansiysk     Sprint 33
## 2379   Khanty-Mansiysk     Sprint 33
## 2380   Khanty-Mansiysk     Sprint 33
## 2381   Khanty-Mansiysk     Sprint 33
## 2382   Khanty-Mansiysk     Sprint 33
## 2383   Khanty-Mansiysk     Sprint 33
## 2384   Khanty-Mansiysk     Sprint 33
## 2385   Khanty-Mansiysk     Sprint 33
## 2386   Khanty-Mansiysk     Sprint 33
## 2387   Khanty-Mansiysk     Sprint 33
## 2388   Khanty-Mansiysk    Pursuit 32
## 2389   Khanty-Mansiysk    Pursuit 32
## 2390   Khanty-Mansiysk    Pursuit 32
## 2391   Khanty-Mansiysk    Pursuit 32
## 2392   Khanty-Mansiysk    Pursuit 32
## 2393   Khanty-Mansiysk    Pursuit 32
## 2394   Khanty-Mansiysk    Pursuit 32
## 2395   Khanty-Mansiysk    Pursuit 32
## 2396   Khanty-Mansiysk    Pursuit 32
## 2397   Khanty-Mansiysk    Pursuit 32
## 2398   Khanty-Mansiysk    Pursuit 32
## 2399   Khanty-Mansiysk    Pursuit 32
## 2400   Khanty-Mansiysk    Pursuit 32
## 2401   Khanty-Mansiysk    Pursuit 32
## 2402   Khanty-Mansiysk    Pursuit 32
## 2403   Khanty-Mansiysk    Pursuit 32
## 2404   Khanty-Mansiysk    Pursuit 32
## 2405   Khanty-Mansiysk    Pursuit 32
## 2406   Khanty-Mansiysk    Pursuit 32
## 2407   Khanty-Mansiysk    Pursuit 32
## 2408   Khanty-Mansiysk    Pursuit 32
## 2409   Khanty-Mansiysk    Pursuit 32
## 2410   Khanty-Mansiysk    Pursuit 32
## 2411   Khanty-Mansiysk    Pursuit 32
## 2412   Khanty-Mansiysk    Pursuit 32
## 2413   Khanty-Mansiysk    Pursuit 32
## 2414   Khanty-Mansiysk    Pursuit 32
## 2415   Khanty-Mansiysk    Pursuit 32
## 2416   Khanty-Mansiysk    Pursuit 32
## 2417   Khanty-Mansiysk    Pursuit 32
## 2418   Khanty-Mansiysk    Pursuit 32
## 2419   Khanty-Mansiysk    Pursuit 32
## 2420   Khanty-Mansiysk    Pursuit 32
## 2421   Khanty-Mansiysk    Pursuit 32
## 2422   Khanty-Mansiysk    Pursuit 32
## 2423   Khanty-Mansiysk    Pursuit 32
## 2424   Khanty-Mansiysk    Pursuit 32
## 2425   Khanty-Mansiysk    Pursuit 32
## 2426   Khanty-Mansiysk    Pursuit 32
## 2427   Khanty-Mansiysk    Pursuit 32
## 2428   Khanty-Mansiysk    Pursuit 32
## 2429   Khanty-Mansiysk    Pursuit 32
## 2430   Khanty-Mansiysk    Pursuit 32
## 2431   Khanty-Mansiysk    Pursuit 32
## 2432   Khanty-Mansiysk    Pursuit 32
## 2433   Khanty-Mansiysk    Pursuit 32
## 2434   Khanty-Mansiysk    Pursuit 32
## 2435   Khanty-Mansiysk    Pursuit 32
## 2436   Khanty-Mansiysk    Pursuit 32
## 2437   Khanty-Mansiysk    Pursuit 32
## 2438   Khanty-Mansiysk    Pursuit 32
## 2439   Khanty-Mansiysk    Pursuit 32
## 2440   Khanty-Mansiysk    Pursuit 32
## 2441        Oestersund     Sprint 36
## 2442        Oestersund     Sprint 36
## 2443        Oestersund     Sprint 36
## 2444        Oestersund     Sprint 36
## 2445        Oestersund     Sprint 36
## 2446        Oestersund     Sprint 36
## 2447        Oestersund     Sprint 36
## 2448        Oestersund     Sprint 36
## 2449        Oestersund     Sprint 36
## 2450        Oestersund     Sprint 36
## 2451        Oestersund     Sprint 36
## 2452        Oestersund     Sprint 36
## 2453        Oestersund     Sprint 36
## 2454        Oestersund     Sprint 36
## 2455        Oestersund     Sprint 36
## 2456        Oestersund     Sprint 36
## 2457        Oestersund     Sprint 36
## 2458        Oestersund     Sprint 36
## 2459        Oestersund     Sprint 36
## 2460        Oestersund     Sprint 36
## 2461        Oestersund     Sprint 36
## 2462        Oestersund     Sprint 36
## 2463        Oestersund     Sprint 36
## 2464        Oestersund     Sprint 36
## 2465        Oestersund     Sprint 36
## 2466        Oestersund     Sprint 36
## 2467        Oestersund     Sprint 36
## 2468        Oestersund     Sprint 36
## 2469        Oestersund     Sprint 36
## 2470        Oestersund     Sprint 36
## 2471        Oestersund     Sprint 36
## 2472        Oestersund     Sprint 36
## 2473        Oestersund     Sprint 36
## 2474        Oestersund     Sprint 36
## 2475        Oestersund     Sprint 36
## 2476        Oestersund     Sprint 36
## 2477        Oestersund     Sprint 36
## 2478        Oestersund     Sprint 36
## 2479        Oestersund     Sprint 36
## 2480        Oestersund     Sprint 36
## 2481        Oestersund     Sprint 36
## 2482        Oestersund     Sprint 36
## 2483        Oestersund     Sprint 36
## 2484        Oestersund     Sprint 36
## 2485        Oestersund     Sprint 36
## 2486        Oestersund     Sprint 36
## 2487        Oestersund     Sprint 36
## 2488        Oestersund     Sprint 36
## 2489        Oestersund     Sprint 36
## 2490        Oestersund     Sprint 36
## 2491        Oestersund     Sprint 36
## 2492        Oestersund     Sprint 36
## 2493        Oestersund     Sprint 36
## 2494        Oestersund     Sprint 36
## 2495        Oestersund     Sprint 36
## 2496        Oestersund     Sprint 36
## 2497        Oestersund     Sprint 36
## 2498        Oestersund     Sprint 36
## 2499        Oestersund     Sprint 36
## 2500        Oestersund     Sprint 36
## 2501        Oestersund     Sprint 36
## 2502        Oestersund     Sprint 36
## 2503        Oestersund     Sprint 36
## 2504        Oestersund     Sprint 36
## 2505        Oestersund     Sprint 36
## 2506        Oestersund     Sprint 36
## 2507        Oestersund     Sprint 36
## 2508        Oestersund     Sprint 36
## 2509        Oestersund     Sprint 36
## 2510        Oestersund     Sprint 36
## 2511        Oestersund     Sprint 36
## 2512        Oestersund     Sprint 36
## 2513        Oestersund     Sprint 36
## 2514        Oestersund     Sprint 36
## 2515        Oestersund     Sprint 36
## 2516        Oestersund     Sprint 36
## 2517        Oestersund     Sprint 36
## 2518        Oestersund     Sprint 36
## 2519        Oestersund     Sprint 36
## 2520        Oestersund     Sprint 36
## 2521        Oestersund     Sprint 36
## 2522        Oestersund     Sprint 36
## 2523        Oestersund     Sprint 36
## 2524        Oestersund     Sprint 36
## 2525        Oestersund     Sprint 36
## 2526        Oestersund     Sprint 36
## 2527        Oestersund     Sprint 36
## 2528        Oestersund     Sprint 36
## 2529        Oestersund     Sprint 36
## 2530        Oestersund     Sprint 36
## 2531        Oestersund     Sprint 36
## 2532        Oestersund     Sprint 36
## 2533        Oestersund     Sprint 36
## 2534        Oestersund     Sprint 36
## 2535        Oestersund     Sprint 36
## 2536        Oestersund     Sprint 36
## 2537        Oestersund     Sprint 36
## 2538        Oestersund     Sprint 36
## 2539        Oestersund     Sprint 36
## 2540        Oestersund     Sprint 36
## 2541        Oestersund     Sprint 36
## 2542        Oestersund     Sprint 36
## 2543        Oestersund     Sprint 36
## 2544        Oestersund Individual 34
## 2545        Oestersund Individual 34
## 2546        Oestersund Individual 34
## 2547        Oestersund Individual 34
## 2548        Oestersund Individual 34
## 2549        Oestersund Individual 34
## 2550        Oestersund Individual 34
## 2551        Oestersund Individual 34
## 2552        Oestersund Individual 34
## 2553        Oestersund Individual 34
## 2554        Oestersund Individual 34
## 2555        Oestersund Individual 34
## 2556        Oestersund Individual 34
## 2557        Oestersund Individual 34
## 2558        Oestersund Individual 34
## 2559        Oestersund Individual 34
## 2560        Oestersund Individual 34
## 2561        Oestersund Individual 34
## 2562        Oestersund Individual 34
## 2563        Oestersund Individual 34
## 2564        Oestersund Individual 34
## 2565        Oestersund Individual 34
## 2566        Oestersund Individual 34
## 2567        Oestersund Individual 34
## 2568        Oestersund Individual 34
## 2569        Oestersund Individual 34
## 2570        Oestersund Individual 34
## 2571        Oestersund Individual 34
## 2572        Oestersund Individual 34
## 2573        Oestersund Individual 34
## 2574        Oestersund Individual 34
## 2575        Oestersund Individual 34
## 2576        Oestersund Individual 34
## 2577        Oestersund Individual 34
## 2578        Oestersund Individual 34
## 2579        Oestersund Individual 34
## 2580        Oestersund Individual 34
## 2581        Oestersund Individual 34
## 2582        Oestersund Individual 34
## 2583        Oestersund Individual 34
## 2584        Oestersund Individual 34
## 2585        Oestersund Individual 34
## 2586        Oestersund Individual 34
## 2587        Oestersund Individual 34
## 2588        Oestersund Individual 34
## 2589        Oestersund Individual 34
## 2590        Oestersund Individual 34
## 2591        Oestersund Individual 34
## 2592        Oestersund Individual 34
## 2593        Oestersund Individual 34
## 2594        Oestersund Individual 34
## 2595        Oestersund Individual 34
## 2596        Oestersund Individual 34
## 2597        Oestersund Individual 34
## 2598        Oestersund Individual 34
## 2599        Oestersund Individual 34
## 2600        Oestersund Individual 34
## 2601        Oestersund Individual 34
## 2602        Oestersund Individual 34
## 2603        Oestersund Individual 34
## 2604        Oestersund Individual 34
## 2605        Oestersund Individual 34
## 2606        Oestersund Individual 34
## 2607        Oestersund Individual 34
## 2608        Oestersund Individual 34
## 2609        Oestersund Individual 34
## 2610        Oestersund Individual 34
## 2611        Oestersund Individual 34
## 2612        Oestersund Individual 34
## 2613        Oestersund Individual 34
## 2614        Oestersund Individual 34
## 2615        Oestersund Individual 34
## 2616        Oestersund Individual 34
## 2617        Oestersund Individual 34
## 2618        Oestersund Individual 34
## 2619        Oestersund Individual 34
## 2620        Oestersund Individual 34
## 2621        Oestersund Individual 34
## 2622        Oestersund Individual 34
## 2623        Oestersund Individual 34
## 2624        Oestersund Individual 34
## 2625        Oestersund Individual 34
## 2626        Oestersund Individual 34
## 2627        Oestersund Individual 34
## 2628        Oestersund Individual 34
## 2629        Oestersund Individual 34
## 2630        Oestersund Individual 34
## 2631        Oestersund Individual 34
## 2632        Oestersund Individual 34
## 2633        Oestersund Individual 34
## 2634        Oestersund Individual 34
## 2635        Oestersund Individual 34
## 2636        Oestersund Individual 34
## 2637        Oestersund Individual 34
## 2638        Oestersund Individual 34
## 2639        Oestersund Individual 34
## 2640        Oestersund Individual 34
## 2641        Oestersund Individual 34
## 2642        Oestersund Individual 34
## 2643        Oestersund Individual 34
## 2644        Oestersund Individual 34
## 2645        Oestersund Individual 34
## 2646        Oestersund Individual 34
## 2647        Oestersund Individual 34
## 2648        Oestersund    Pursuit 35
## 2649        Oestersund    Pursuit 35
## 2650        Oestersund    Pursuit 35
## 2651        Oestersund    Pursuit 35
## 2652        Oestersund    Pursuit 35
## 2653        Oestersund    Pursuit 35
## 2654        Oestersund    Pursuit 35
## 2655        Oestersund    Pursuit 35
## 2656        Oestersund    Pursuit 35
## 2657        Oestersund    Pursuit 35
## 2658        Oestersund    Pursuit 35
## 2659        Oestersund    Pursuit 35
## 2660        Oestersund    Pursuit 35
## 2661        Oestersund    Pursuit 35
## 2662        Oestersund    Pursuit 35
## 2663        Oestersund    Pursuit 35
## 2664        Oestersund    Pursuit 35
## 2665        Oestersund    Pursuit 35
## 2666        Oestersund    Pursuit 35
## 2667        Oestersund    Pursuit 35
## 2668        Oestersund    Pursuit 35
## 2669        Oestersund    Pursuit 35
## 2670        Oestersund    Pursuit 35
## 2671        Oestersund    Pursuit 35
## 2672        Oestersund    Pursuit 35
## 2673        Oestersund    Pursuit 35
## 2674        Oestersund    Pursuit 35
## 2675        Oestersund    Pursuit 35
## 2676        Oestersund    Pursuit 35
## 2677        Oestersund    Pursuit 35
## 2678        Oestersund    Pursuit 35
## 2679        Oestersund    Pursuit 35
## 2680        Oestersund    Pursuit 35
## 2681        Oestersund    Pursuit 35
## 2682        Oestersund    Pursuit 35
## 2683        Oestersund    Pursuit 35
## 2684        Oestersund    Pursuit 35
## 2685        Oestersund    Pursuit 35
## 2686        Oestersund    Pursuit 35
## 2687        Oestersund    Pursuit 35
## 2688        Oestersund    Pursuit 35
## 2689        Oestersund    Pursuit 35
## 2690        Oestersund    Pursuit 35
## 2691        Oestersund    Pursuit 35
## 2692        Oestersund    Pursuit 35
## 2693        Oestersund    Pursuit 35
## 2694        Oestersund    Pursuit 35
## 2695        Oestersund    Pursuit 35
## 2696        Oestersund    Pursuit 35
## 2697        Oestersund    Pursuit 35
## 2698        Oestersund    Pursuit 35
## 2699        Oestersund    Pursuit 35
## 2700        Oestersund    Pursuit 35
## 2701        Oestersund    Pursuit 35
## 2702        Oestersund    Pursuit 35
## 2703        Oestersund    Pursuit 35
## 2704        Oestersund    Pursuit 35
## 2705        Oestersund    Pursuit 35
## 2706        Oestersund    Pursuit 35
## 2707        Oestersund    Pursuit 35
## 2708 Oslo_Holmenkollen     Sprint 40
## 2709 Oslo_Holmenkollen     Sprint 40
## 2710 Oslo_Holmenkollen     Sprint 40
## 2711 Oslo_Holmenkollen     Sprint 40
## 2712 Oslo_Holmenkollen     Sprint 40
## 2713 Oslo_Holmenkollen     Sprint 40
## 2714 Oslo_Holmenkollen     Sprint 40
## 2715 Oslo_Holmenkollen     Sprint 40
## 2716 Oslo_Holmenkollen     Sprint 40
## 2717 Oslo_Holmenkollen     Sprint 40
## 2718 Oslo_Holmenkollen     Sprint 40
## 2719 Oslo_Holmenkollen     Sprint 40
## 2720 Oslo_Holmenkollen     Sprint 40
## 2721 Oslo_Holmenkollen     Sprint 40
## 2722 Oslo_Holmenkollen     Sprint 40
## 2723 Oslo_Holmenkollen     Sprint 40
## 2724 Oslo_Holmenkollen     Sprint 40
## 2725 Oslo_Holmenkollen     Sprint 40
## 2726 Oslo_Holmenkollen     Sprint 40
## 2727 Oslo_Holmenkollen     Sprint 40
## 2728 Oslo_Holmenkollen     Sprint 40
## 2729 Oslo_Holmenkollen     Sprint 40
## 2730 Oslo_Holmenkollen     Sprint 40
## 2731 Oslo_Holmenkollen     Sprint 40
## 2732 Oslo_Holmenkollen     Sprint 40
## 2733 Oslo_Holmenkollen     Sprint 40
## 2734 Oslo_Holmenkollen     Sprint 40
## 2735 Oslo_Holmenkollen     Sprint 40
## 2736 Oslo_Holmenkollen     Sprint 40
## 2737 Oslo_Holmenkollen     Sprint 40
## 2738 Oslo_Holmenkollen     Sprint 40
## 2739 Oslo_Holmenkollen     Sprint 40
## 2740 Oslo_Holmenkollen     Sprint 40
## 2741 Oslo_Holmenkollen     Sprint 40
## 2742 Oslo_Holmenkollen     Sprint 40
## 2743 Oslo_Holmenkollen     Sprint 40
## 2744 Oslo_Holmenkollen     Sprint 40
## 2745 Oslo_Holmenkollen     Sprint 40
## 2746 Oslo_Holmenkollen     Sprint 40
## 2747 Oslo_Holmenkollen     Sprint 40
## 2748 Oslo_Holmenkollen     Sprint 40
## 2749 Oslo_Holmenkollen     Sprint 40
## 2750 Oslo_Holmenkollen     Sprint 40
## 2751 Oslo_Holmenkollen     Sprint 40
## 2752 Oslo_Holmenkollen     Sprint 40
## 2753 Oslo_Holmenkollen     Sprint 40
## 2754 Oslo_Holmenkollen     Sprint 40
## 2755 Oslo_Holmenkollen     Sprint 40
## 2756 Oslo_Holmenkollen     Sprint 40
## 2757 Oslo_Holmenkollen     Sprint 40
## 2758 Oslo_Holmenkollen     Sprint 40
## 2759 Oslo_Holmenkollen     Sprint 40
## 2760 Oslo_Holmenkollen     Sprint 40
## 2761 Oslo_Holmenkollen     Sprint 40
## 2762 Oslo_Holmenkollen     Sprint 40
## 2763 Oslo_Holmenkollen     Sprint 40
## 2764 Oslo_Holmenkollen     Sprint 40
## 2765 Oslo_Holmenkollen     Sprint 40
## 2766 Oslo_Holmenkollen     Sprint 40
## 2767 Oslo_Holmenkollen     Sprint 40
## 2768 Oslo_Holmenkollen     Sprint 40
## 2769 Oslo_Holmenkollen     Sprint 40
## 2770 Oslo_Holmenkollen     Sprint 40
## 2771 Oslo_Holmenkollen     Sprint 40
## 2772 Oslo_Holmenkollen     Sprint 40
## 2773 Oslo_Holmenkollen     Sprint 40
## 2774 Oslo_Holmenkollen     Sprint 40
## 2775 Oslo_Holmenkollen     Sprint 40
## 2776 Oslo_Holmenkollen     Sprint 40
## 2777 Oslo_Holmenkollen     Sprint 40
## 2778 Oslo_Holmenkollen     Sprint 40
## 2779 Oslo_Holmenkollen     Sprint 40
## 2780 Oslo_Holmenkollen     Sprint 40
## 2781 Oslo_Holmenkollen     Sprint 40
## 2782 Oslo_Holmenkollen     Sprint 40
## 2783 Oslo_Holmenkollen     Sprint 40
## 2784 Oslo_Holmenkollen     Sprint 40
## 2785 Oslo_Holmenkollen     Sprint 40
## 2786 Oslo_Holmenkollen     Sprint 40
## 2787 Oslo_Holmenkollen     Sprint 40
## 2788 Oslo_Holmenkollen     Sprint 40
## 2789 Oslo_Holmenkollen     Sprint 40
## 2790 Oslo_Holmenkollen     Sprint 40
## 2791 Oslo_Holmenkollen     Sprint 40
## 2792 Oslo_Holmenkollen     Sprint 40
## 2793 Oslo_Holmenkollen     Sprint 40
## 2794 Oslo_Holmenkollen     Sprint 40
## 2795 Oslo_Holmenkollen     Sprint 40
## 2796 Oslo_Holmenkollen     Sprint 40
## 2797 Oslo_Holmenkollen     Sprint 40
## 2798 Oslo_Holmenkollen     Sprint 40
## 2799 Oslo_Holmenkollen     Sprint 40
## 2800 Oslo_Holmenkollen     Sprint 40
## 2801 Oslo_Holmenkollen     Sprint 40
## 2802 Oslo_Holmenkollen     Sprint 40
## 2803 Oslo_Holmenkollen     Sprint 40
## 2804 Oslo_Holmenkollen     Sprint 40
## 2805 Oslo_Holmenkollen     Sprint 40
## 2806 Oslo_Holmenkollen     Sprint 40
## 2807 Oslo_Holmenkollen     Sprint 40
## 2808 Oslo_Holmenkollen     Sprint 40
## 2809 Oslo_Holmenkollen     Sprint 40
## 2810 Oslo_Holmenkollen Individual 37
## 2811 Oslo_Holmenkollen Individual 37
## 2812 Oslo_Holmenkollen Individual 37
## 2813 Oslo_Holmenkollen Individual 37
## 2814 Oslo_Holmenkollen Individual 37
## 2815 Oslo_Holmenkollen Individual 37
## 2816 Oslo_Holmenkollen Individual 37
## 2817 Oslo_Holmenkollen Individual 37
## 2818 Oslo_Holmenkollen Individual 37
## 2819 Oslo_Holmenkollen Individual 37
## 2820 Oslo_Holmenkollen Individual 37
## 2821 Oslo_Holmenkollen Individual 37
## 2822 Oslo_Holmenkollen Individual 37
## 2823 Oslo_Holmenkollen Individual 37
## 2824 Oslo_Holmenkollen Individual 37
## 2825 Oslo_Holmenkollen Individual 37
## 2826 Oslo_Holmenkollen Individual 37
## 2827 Oslo_Holmenkollen Individual 37
## 2828 Oslo_Holmenkollen Individual 37
## 2829 Oslo_Holmenkollen Individual 37
## 2830 Oslo_Holmenkollen Individual 37
## 2831 Oslo_Holmenkollen Individual 37
## 2832 Oslo_Holmenkollen Individual 37
## 2833 Oslo_Holmenkollen Individual 37
## 2834 Oslo_Holmenkollen Individual 37
## 2835 Oslo_Holmenkollen Individual 37
## 2836 Oslo_Holmenkollen Individual 37
## 2837 Oslo_Holmenkollen Individual 37
## 2838 Oslo_Holmenkollen Individual 37
## 2839 Oslo_Holmenkollen Individual 37
## 2840 Oslo_Holmenkollen Individual 37
## 2841 Oslo_Holmenkollen Individual 37
## 2842 Oslo_Holmenkollen Individual 37
## 2843 Oslo_Holmenkollen Individual 37
## 2844 Oslo_Holmenkollen Individual 37
## 2845 Oslo_Holmenkollen Individual 37
## 2846 Oslo_Holmenkollen Individual 37
## 2847 Oslo_Holmenkollen Individual 37
## 2848 Oslo_Holmenkollen Individual 37
## 2849 Oslo_Holmenkollen Individual 37
## 2850 Oslo_Holmenkollen Individual 37
## 2851 Oslo_Holmenkollen Individual 37
## 2852 Oslo_Holmenkollen Individual 37
## 2853 Oslo_Holmenkollen Individual 37
## 2854 Oslo_Holmenkollen Individual 37
## 2855 Oslo_Holmenkollen Individual 37
## 2856 Oslo_Holmenkollen Individual 37
## 2857 Oslo_Holmenkollen Individual 37
## 2858 Oslo_Holmenkollen Individual 37
## 2859 Oslo_Holmenkollen Individual 37
## 2860 Oslo_Holmenkollen Individual 37
## 2861 Oslo_Holmenkollen Individual 37
## 2862 Oslo_Holmenkollen Individual 37
## 2863 Oslo_Holmenkollen Individual 37
## 2864 Oslo_Holmenkollen Individual 37
## 2865 Oslo_Holmenkollen Individual 37
## 2866 Oslo_Holmenkollen Individual 37
## 2867 Oslo_Holmenkollen Individual 37
## 2868 Oslo_Holmenkollen Individual 37
## 2869 Oslo_Holmenkollen Individual 37
## 2870 Oslo_Holmenkollen Individual 37
## 2871 Oslo_Holmenkollen Individual 37
## 2872 Oslo_Holmenkollen Individual 37
## 2873 Oslo_Holmenkollen Individual 37
## 2874 Oslo_Holmenkollen Individual 37
## 2875 Oslo_Holmenkollen Individual 37
## 2876 Oslo_Holmenkollen Individual 37
## 2877 Oslo_Holmenkollen Individual 37
## 2878 Oslo_Holmenkollen Individual 37
## 2879 Oslo_Holmenkollen Individual 37
## 2880 Oslo_Holmenkollen Individual 37
## 2881 Oslo_Holmenkollen Individual 37
## 2882 Oslo_Holmenkollen Individual 37
## 2883 Oslo_Holmenkollen Individual 37
## 2884 Oslo_Holmenkollen Individual 37
## 2885 Oslo_Holmenkollen Individual 37
## 2886 Oslo_Holmenkollen Individual 37
## 2887 Oslo_Holmenkollen Individual 37
## 2888 Oslo_Holmenkollen Individual 37
## 2889 Oslo_Holmenkollen Individual 37
## 2890 Oslo_Holmenkollen Individual 37
## 2891 Oslo_Holmenkollen Individual 37
## 2892 Oslo_Holmenkollen Individual 37
## 2893 Oslo_Holmenkollen Individual 37
## 2894 Oslo_Holmenkollen Individual 37
## 2895 Oslo_Holmenkollen Individual 37
## 2896 Oslo_Holmenkollen Individual 37
## 2897 Oslo_Holmenkollen Individual 37
## 2898 Oslo_Holmenkollen Individual 37
## 2899 Oslo_Holmenkollen Individual 37
## 2900 Oslo_Holmenkollen Individual 37
## 2901 Oslo_Holmenkollen Individual 37
## 2902 Oslo_Holmenkollen Individual 37
## 2903 Oslo_Holmenkollen Individual 37
## 2904 Oslo_Holmenkollen Individual 37
## 2905 Oslo_Holmenkollen Individual 37
## 2906 Oslo_Holmenkollen Individual 37
## 2907 Oslo_Holmenkollen Individual 37
## 2908 Oslo_Holmenkollen Individual 37
## 2909 Oslo_Holmenkollen Mass start 38
## 2910 Oslo_Holmenkollen Mass start 38
## 2911 Oslo_Holmenkollen Mass start 38
## 2912 Oslo_Holmenkollen Mass start 38
## 2913 Oslo_Holmenkollen Mass start 38
## 2914 Oslo_Holmenkollen Mass start 38
## 2915 Oslo_Holmenkollen Mass start 38
## 2916 Oslo_Holmenkollen Mass start 38
## 2917 Oslo_Holmenkollen Mass start 38
## 2918 Oslo_Holmenkollen Mass start 38
## 2919 Oslo_Holmenkollen Mass start 38
## 2920 Oslo_Holmenkollen Mass start 38
## 2921 Oslo_Holmenkollen Mass start 38
## 2922 Oslo_Holmenkollen Mass start 38
## 2923 Oslo_Holmenkollen Mass start 38
## 2924 Oslo_Holmenkollen Mass start 38
## 2925 Oslo_Holmenkollen Mass start 38
## 2926 Oslo_Holmenkollen Mass start 38
## 2927 Oslo_Holmenkollen Mass start 38
## 2928 Oslo_Holmenkollen Mass start 38
## 2929 Oslo_Holmenkollen Mass start 38
## 2930 Oslo_Holmenkollen Mass start 38
## 2931 Oslo_Holmenkollen Mass start 38
## 2932 Oslo_Holmenkollen Mass start 38
## 2933 Oslo_Holmenkollen Mass start 38
## 2934 Oslo_Holmenkollen Mass start 38
## 2935 Oslo_Holmenkollen Mass start 38
## 2936 Oslo_Holmenkollen Mass start 38
## 2937 Oslo_Holmenkollen Mass start 38
## 2938 Oslo_Holmenkollen    Pursuit 39
## 2939 Oslo_Holmenkollen    Pursuit 39
## 2940 Oslo_Holmenkollen    Pursuit 39
## 2941 Oslo_Holmenkollen    Pursuit 39
## 2942 Oslo_Holmenkollen    Pursuit 39
## 2943 Oslo_Holmenkollen    Pursuit 39
## 2944 Oslo_Holmenkollen    Pursuit 39
## 2945 Oslo_Holmenkollen    Pursuit 39
## 2946 Oslo_Holmenkollen    Pursuit 39
## 2947 Oslo_Holmenkollen    Pursuit 39
## 2948 Oslo_Holmenkollen    Pursuit 39
## 2949 Oslo_Holmenkollen    Pursuit 39
## 2950 Oslo_Holmenkollen    Pursuit 39
## 2951 Oslo_Holmenkollen    Pursuit 39
## 2952 Oslo_Holmenkollen    Pursuit 39
## 2953 Oslo_Holmenkollen    Pursuit 39
## 2954 Oslo_Holmenkollen    Pursuit 39
## 2955 Oslo_Holmenkollen    Pursuit 39
## 2956 Oslo_Holmenkollen    Pursuit 39
## 2957 Oslo_Holmenkollen    Pursuit 39
## 2958 Oslo_Holmenkollen    Pursuit 39
## 2959 Oslo_Holmenkollen    Pursuit 39
## 2960 Oslo_Holmenkollen    Pursuit 39
## 2961 Oslo_Holmenkollen    Pursuit 39
## 2962 Oslo_Holmenkollen    Pursuit 39
## 2963 Oslo_Holmenkollen    Pursuit 39
## 2964 Oslo_Holmenkollen    Pursuit 39
## 2965 Oslo_Holmenkollen    Pursuit 39
## 2966 Oslo_Holmenkollen    Pursuit 39
## 2967 Oslo_Holmenkollen    Pursuit 39
## 2968 Oslo_Holmenkollen    Pursuit 39
## 2969 Oslo_Holmenkollen    Pursuit 39
## 2970 Oslo_Holmenkollen    Pursuit 39
## 2971 Oslo_Holmenkollen    Pursuit 39
## 2972 Oslo_Holmenkollen    Pursuit 39
## 2973 Oslo_Holmenkollen    Pursuit 39
## 2974 Oslo_Holmenkollen    Pursuit 39
## 2975 Oslo_Holmenkollen    Pursuit 39
## 2976 Oslo_Holmenkollen    Pursuit 39
## 2977 Oslo_Holmenkollen    Pursuit 39
## 2978 Oslo_Holmenkollen    Pursuit 39
## 2979 Oslo_Holmenkollen    Pursuit 39
## 2980 Oslo_Holmenkollen    Pursuit 39
## 2981 Oslo_Holmenkollen    Pursuit 39
## 2982 Oslo_Holmenkollen    Pursuit 39
## 2983 Oslo_Holmenkollen    Pursuit 39
## 2984 Oslo_Holmenkollen    Pursuit 39
## 2985 Oslo_Holmenkollen    Pursuit 39
## 2986 Oslo_Holmenkollen    Pursuit 39
## 2987 Oslo_Holmenkollen    Pursuit 39
## 2988 Oslo_Holmenkollen    Pursuit 39
## 2989 Oslo_Holmenkollen    Pursuit 39
## 2990 Oslo_Holmenkollen    Pursuit 39
## 2991 Oslo_Holmenkollen    Pursuit 39
## 2992 Oslo_Holmenkollen    Pursuit 39
## 2993 Oslo_Holmenkollen    Pursuit 39
## 2994 Oslo_Holmenkollen    Pursuit 39
## 2995          Pokljuka     Sprint 43
## 2996          Pokljuka     Sprint 43
## 2997          Pokljuka     Sprint 43
## 2998          Pokljuka     Sprint 43
## 2999          Pokljuka     Sprint 43
## 3000          Pokljuka     Sprint 43
## 3001          Pokljuka     Sprint 43
## 3002          Pokljuka     Sprint 43
## 3003          Pokljuka     Sprint 43
## 3004          Pokljuka     Sprint 43
## 3005          Pokljuka     Sprint 43
## 3006          Pokljuka     Sprint 43
## 3007          Pokljuka     Sprint 43
## 3008          Pokljuka     Sprint 43
## 3009          Pokljuka     Sprint 43
## 3010          Pokljuka     Sprint 43
## 3011          Pokljuka     Sprint 43
## 3012          Pokljuka     Sprint 43
## 3013          Pokljuka     Sprint 43
## 3014          Pokljuka     Sprint 43
## 3015          Pokljuka     Sprint 43
## 3016          Pokljuka     Sprint 43
## 3017          Pokljuka     Sprint 43
## 3018          Pokljuka     Sprint 43
## 3019          Pokljuka     Sprint 43
## 3020          Pokljuka     Sprint 43
## 3021          Pokljuka     Sprint 43
## 3022          Pokljuka     Sprint 43
## 3023          Pokljuka     Sprint 43
## 3024          Pokljuka     Sprint 43
## 3025          Pokljuka     Sprint 43
## 3026          Pokljuka     Sprint 43
## 3027          Pokljuka     Sprint 43
## 3028          Pokljuka     Sprint 43
## 3029          Pokljuka     Sprint 43
## 3030          Pokljuka     Sprint 43
## 3031          Pokljuka     Sprint 43
## 3032          Pokljuka     Sprint 43
## 3033          Pokljuka     Sprint 43
## 3034          Pokljuka     Sprint 43
## 3035          Pokljuka     Sprint 43
## 3036          Pokljuka     Sprint 43
## 3037          Pokljuka     Sprint 43
## 3038          Pokljuka     Sprint 43
## 3039          Pokljuka     Sprint 43
## 3040          Pokljuka     Sprint 43
## 3041          Pokljuka     Sprint 43
## 3042          Pokljuka     Sprint 43
## 3043          Pokljuka     Sprint 43
## 3044          Pokljuka     Sprint 43
## 3045          Pokljuka     Sprint 43
## 3046          Pokljuka     Sprint 43
## 3047          Pokljuka     Sprint 43
## 3048          Pokljuka     Sprint 43
## 3049          Pokljuka     Sprint 43
## 3050          Pokljuka     Sprint 43
## 3051          Pokljuka     Sprint 43
## 3052          Pokljuka     Sprint 43
## 3053          Pokljuka     Sprint 43
## 3054          Pokljuka     Sprint 43
## 3055          Pokljuka     Sprint 43
## 3056          Pokljuka     Sprint 43
## 3057          Pokljuka     Sprint 43
## 3058          Pokljuka     Sprint 43
## 3059          Pokljuka     Sprint 43
## 3060          Pokljuka     Sprint 43
## 3061          Pokljuka     Sprint 43
## 3062          Pokljuka     Sprint 43
## 3063          Pokljuka     Sprint 43
## 3064          Pokljuka     Sprint 43
## 3065          Pokljuka     Sprint 43
## 3066          Pokljuka     Sprint 43
## 3067          Pokljuka     Sprint 43
## 3068          Pokljuka     Sprint 43
## 3069          Pokljuka     Sprint 43
## 3070          Pokljuka     Sprint 43
## 3071          Pokljuka     Sprint 43
## 3072          Pokljuka     Sprint 43
## 3073          Pokljuka     Sprint 43
## 3074          Pokljuka     Sprint 43
## 3075          Pokljuka     Sprint 43
## 3076          Pokljuka     Sprint 43
## 3077          Pokljuka     Sprint 43
## 3078          Pokljuka     Sprint 43
## 3079          Pokljuka     Sprint 43
## 3080          Pokljuka     Sprint 43
## 3081          Pokljuka     Sprint 43
## 3082          Pokljuka     Sprint 43
## 3083          Pokljuka     Sprint 43
## 3084          Pokljuka     Sprint 43
## 3085          Pokljuka     Sprint 43
## 3086          Pokljuka     Sprint 43
## 3087          Pokljuka     Sprint 43
## 3088          Pokljuka     Sprint 43
## 3089          Pokljuka     Sprint 43
## 3090          Pokljuka     Sprint 43
## 3091          Pokljuka     Sprint 43
## 3092          Pokljuka     Sprint 43
## 3093          Pokljuka     Sprint 43
## 3094          Pokljuka     Sprint 43
## 3095          Pokljuka     Sprint 43
## 3096          Pokljuka     Sprint 43
## 3097          Pokljuka Mass start 41
## 3098          Pokljuka Mass start 41
## 3099          Pokljuka Mass start 41
## 3100          Pokljuka Mass start 41
## 3101          Pokljuka Mass start 41
## 3102          Pokljuka Mass start 41
## 3103          Pokljuka Mass start 41
## 3104          Pokljuka Mass start 41
## 3105          Pokljuka Mass start 41
## 3106          Pokljuka Mass start 41
## 3107          Pokljuka Mass start 41
## 3108          Pokljuka Mass start 41
## 3109          Pokljuka Mass start 41
## 3110          Pokljuka Mass start 41
## 3111          Pokljuka Mass start 41
## 3112          Pokljuka Mass start 41
## 3113          Pokljuka Mass start 41
## 3114          Pokljuka Mass start 41
## 3115          Pokljuka Mass start 41
## 3116          Pokljuka Mass start 41
## 3117          Pokljuka Mass start 41
## 3118          Pokljuka Mass start 41
## 3119          Pokljuka Mass start 41
## 3120          Pokljuka Mass start 41
## 3121          Pokljuka Mass start 41
## 3122          Pokljuka Mass start 41
## 3123          Pokljuka Mass start 41
## 3124          Pokljuka Mass start 41
## 3125          Pokljuka Mass start 41
## 3126          Pokljuka Mass start 41
## 3127          Pokljuka    Pursuit 42
## 3128          Pokljuka    Pursuit 42
## 3129          Pokljuka    Pursuit 42
## 3130          Pokljuka    Pursuit 42
## 3131          Pokljuka    Pursuit 42
## 3132          Pokljuka    Pursuit 42
## 3133          Pokljuka    Pursuit 42
## 3134          Pokljuka    Pursuit 42
## 3135          Pokljuka    Pursuit 42
## 3136          Pokljuka    Pursuit 42
## 3137          Pokljuka    Pursuit 42
## 3138          Pokljuka    Pursuit 42
## 3139          Pokljuka    Pursuit 42
## 3140          Pokljuka    Pursuit 42
## 3141          Pokljuka    Pursuit 42
## 3142          Pokljuka    Pursuit 42
## 3143          Pokljuka    Pursuit 42
## 3144          Pokljuka    Pursuit 42
## 3145          Pokljuka    Pursuit 42
## 3146          Pokljuka    Pursuit 42
## 3147          Pokljuka    Pursuit 42
## 3148          Pokljuka    Pursuit 42
## 3149          Pokljuka    Pursuit 42
## 3150          Pokljuka    Pursuit 42
## 3151          Pokljuka    Pursuit 42
## 3152          Pokljuka    Pursuit 42
## 3153          Pokljuka    Pursuit 42
## 3154          Pokljuka    Pursuit 42
## 3155          Pokljuka    Pursuit 42
## 3156          Pokljuka    Pursuit 42
## 3157          Pokljuka    Pursuit 42
## 3158          Pokljuka    Pursuit 42
## 3159          Pokljuka    Pursuit 42
## 3160          Pokljuka    Pursuit 42
## 3161          Pokljuka    Pursuit 42
## 3162          Pokljuka    Pursuit 42
## 3163          Pokljuka    Pursuit 42
## 3164          Pokljuka    Pursuit 42
## 3165          Pokljuka    Pursuit 42
## 3166          Pokljuka    Pursuit 42
## 3167          Pokljuka    Pursuit 42
## 3168          Pokljuka    Pursuit 42
## 3169          Pokljuka    Pursuit 42
## 3170          Pokljuka    Pursuit 42
## 3171          Pokljuka    Pursuit 42
## 3172          Pokljuka    Pursuit 42
## 3173          Pokljuka    Pursuit 42
## 3174          Pokljuka    Pursuit 42
## 3175          Pokljuka    Pursuit 42
## 3176          Pokljuka    Pursuit 42
## 3177          Pokljuka    Pursuit 42
## 3178          Pokljuka    Pursuit 42
## 3179          Pokljuka    Pursuit 42
## 3180          Pokljuka    Pursuit 42
## 3181          Pokljuka    Pursuit 42
## 3182          Pokljuka    Pursuit 42
## 3183          Pokljuka    Pursuit 42
## 3184          Pokljuka    Pursuit 42
## 3185          Pokljuka    Pursuit 42
## 3186      Presque_Isle     Sprint 45
## 3187      Presque_Isle     Sprint 45
## 3188      Presque_Isle     Sprint 45
## 3189      Presque_Isle     Sprint 45
## 3190      Presque_Isle     Sprint 45
## 3191      Presque_Isle     Sprint 45
## 3192      Presque_Isle     Sprint 45
## 3193      Presque_Isle     Sprint 45
## 3194      Presque_Isle     Sprint 45
## 3195      Presque_Isle     Sprint 45
## 3196      Presque_Isle     Sprint 45
## 3197      Presque_Isle     Sprint 45
## 3198      Presque_Isle     Sprint 45
## 3199      Presque_Isle     Sprint 45
## 3200      Presque_Isle     Sprint 45
## 3201      Presque_Isle     Sprint 45
## 3202      Presque_Isle     Sprint 45
## 3203      Presque_Isle     Sprint 45
## 3204      Presque_Isle     Sprint 45
## 3205      Presque_Isle     Sprint 45
## 3206      Presque_Isle     Sprint 45
## 3207      Presque_Isle     Sprint 45
## 3208      Presque_Isle     Sprint 45
## 3209      Presque_Isle     Sprint 45
## 3210      Presque_Isle     Sprint 45
## 3211      Presque_Isle     Sprint 45
## 3212      Presque_Isle     Sprint 45
## 3213      Presque_Isle     Sprint 45
## 3214      Presque_Isle     Sprint 45
## 3215      Presque_Isle     Sprint 45
## 3216      Presque_Isle     Sprint 45
## 3217      Presque_Isle     Sprint 45
## 3218      Presque_Isle     Sprint 45
## 3219      Presque_Isle     Sprint 45
## 3220      Presque_Isle     Sprint 45
## 3221      Presque_Isle     Sprint 45
## 3222      Presque_Isle     Sprint 45
## 3223      Presque_Isle     Sprint 45
## 3224      Presque_Isle     Sprint 45
## 3225      Presque_Isle     Sprint 45
## 3226      Presque_Isle     Sprint 45
## 3227      Presque_Isle     Sprint 45
## 3228      Presque_Isle     Sprint 45
## 3229      Presque_Isle     Sprint 45
## 3230      Presque_Isle     Sprint 45
## 3231      Presque_Isle     Sprint 45
## 3232      Presque_Isle     Sprint 45
## 3233      Presque_Isle     Sprint 45
## 3234      Presque_Isle     Sprint 45
## 3235      Presque_Isle     Sprint 45
## 3236      Presque_Isle     Sprint 45
## 3237      Presque_Isle     Sprint 45
## 3238      Presque_Isle     Sprint 45
## 3239      Presque_Isle     Sprint 45
## 3240      Presque_Isle     Sprint 45
## 3241      Presque_Isle     Sprint 45
## 3242      Presque_Isle     Sprint 45
## 3243      Presque_Isle     Sprint 45
## 3244      Presque_Isle     Sprint 45
## 3245      Presque_Isle     Sprint 45
## 3246      Presque_Isle     Sprint 45
## 3247      Presque_Isle     Sprint 45
## 3248      Presque_Isle     Sprint 45
## 3249      Presque_Isle     Sprint 45
## 3250      Presque_Isle     Sprint 45
## 3251      Presque_Isle     Sprint 45
## 3252      Presque_Isle     Sprint 45
## 3253      Presque_Isle     Sprint 45
## 3254      Presque_Isle     Sprint 45
## 3255      Presque_Isle     Sprint 45
## 3256      Presque_Isle     Sprint 45
## 3257      Presque_Isle     Sprint 45
## 3258      Presque_Isle     Sprint 45
## 3259      Presque_Isle     Sprint 45
## 3260      Presque_Isle     Sprint 45
## 3261      Presque_Isle     Sprint 45
## 3262      Presque_Isle     Sprint 45
## 3263      Presque_Isle     Sprint 45
## 3264      Presque_Isle     Sprint 45
## 3265      Presque_Isle     Sprint 45
## 3266      Presque_Isle     Sprint 45
## 3267      Presque_Isle     Sprint 45
## 3268      Presque_Isle     Sprint 45
## 3269      Presque_Isle     Sprint 45
## 3270      Presque_Isle     Sprint 45
## 3271      Presque_Isle     Sprint 45
## 3272      Presque_Isle     Sprint 45
## 3273      Presque_Isle     Sprint 45
## 3274      Presque_Isle    Pursuit 44
## 3275      Presque_Isle    Pursuit 44
## 3276      Presque_Isle    Pursuit 44
## 3277      Presque_Isle    Pursuit 44
## 3278      Presque_Isle    Pursuit 44
## 3279      Presque_Isle    Pursuit 44
## 3280      Presque_Isle    Pursuit 44
## 3281      Presque_Isle    Pursuit 44
## 3282      Presque_Isle    Pursuit 44
## 3283      Presque_Isle    Pursuit 44
## 3284      Presque_Isle    Pursuit 44
## 3285      Presque_Isle    Pursuit 44
## 3286      Presque_Isle    Pursuit 44
## 3287      Presque_Isle    Pursuit 44
## 3288      Presque_Isle    Pursuit 44
## 3289      Presque_Isle    Pursuit 44
## 3290      Presque_Isle    Pursuit 44
## 3291      Presque_Isle    Pursuit 44
## 3292      Presque_Isle    Pursuit 44
## 3293      Presque_Isle    Pursuit 44
## 3294      Presque_Isle    Pursuit 44
## 3295      Presque_Isle    Pursuit 44
## 3296      Presque_Isle    Pursuit 44
## 3297      Presque_Isle    Pursuit 44
## 3298      Presque_Isle    Pursuit 44
## 3299      Presque_Isle    Pursuit 44
## 3300      Presque_Isle    Pursuit 44
## 3301      Presque_Isle    Pursuit 44
## 3302      Presque_Isle    Pursuit 44
## 3303      Presque_Isle    Pursuit 44
## 3304      Presque_Isle    Pursuit 44
## 3305      Presque_Isle    Pursuit 44
## 3306      Presque_Isle    Pursuit 44
## 3307      Presque_Isle    Pursuit 44
## 3308      Presque_Isle    Pursuit 44
## 3309      Presque_Isle    Pursuit 44
## 3310      Presque_Isle    Pursuit 44
## 3311      Presque_Isle    Pursuit 44
## 3312      Presque_Isle    Pursuit 44
## 3313      Presque_Isle    Pursuit 44
## 3314      Presque_Isle    Pursuit 44
## 3315      Presque_Isle    Pursuit 44
## 3316      Presque_Isle    Pursuit 44
## 3317      Presque_Isle    Pursuit 44
## 3318      Presque_Isle    Pursuit 44
## 3319      Presque_Isle    Pursuit 44
## 3320      Presque_Isle    Pursuit 44
## 3321      Presque_Isle    Pursuit 44
## 3322      Presque_Isle    Pursuit 44
## 3323      Presque_Isle    Pursuit 44
## 3324      Presque_Isle    Pursuit 44
## 3325      Presque_Isle    Pursuit 44
## 3326      Presque_Isle    Pursuit 44
## 3327        Ruhpolding     Sprint 50
## 3328        Ruhpolding     Sprint 50
## 3329        Ruhpolding     Sprint 50
## 3330        Ruhpolding     Sprint 50
## 3331        Ruhpolding     Sprint 50
## 3332        Ruhpolding     Sprint 50
## 3333        Ruhpolding     Sprint 50
## 3334        Ruhpolding     Sprint 50
## 3335        Ruhpolding     Sprint 50
## 3336        Ruhpolding     Sprint 50
## 3337        Ruhpolding     Sprint 50
## 3338        Ruhpolding     Sprint 50
## 3339        Ruhpolding     Sprint 50
## 3340        Ruhpolding     Sprint 50
## 3341        Ruhpolding     Sprint 50
## 3342        Ruhpolding     Sprint 50
## 3343        Ruhpolding     Sprint 50
## 3344        Ruhpolding     Sprint 50
## 3345        Ruhpolding     Sprint 50
## 3346        Ruhpolding     Sprint 50
## 3347        Ruhpolding     Sprint 50
## 3348        Ruhpolding     Sprint 50
## 3349        Ruhpolding     Sprint 50
## 3350        Ruhpolding     Sprint 50
## 3351        Ruhpolding     Sprint 50
## 3352        Ruhpolding     Sprint 50
## 3353        Ruhpolding     Sprint 50
## 3354        Ruhpolding     Sprint 50
## 3355        Ruhpolding     Sprint 50
## 3356        Ruhpolding     Sprint 50
## 3357        Ruhpolding     Sprint 50
## 3358        Ruhpolding     Sprint 50
## 3359        Ruhpolding     Sprint 50
## 3360        Ruhpolding     Sprint 50
## 3361        Ruhpolding     Sprint 50
## 3362        Ruhpolding     Sprint 50
## 3363        Ruhpolding     Sprint 50
## 3364        Ruhpolding     Sprint 50
## 3365        Ruhpolding     Sprint 50
## 3366        Ruhpolding     Sprint 50
## 3367        Ruhpolding     Sprint 50
## 3368        Ruhpolding     Sprint 50
## 3369        Ruhpolding     Sprint 50
## 3370        Ruhpolding     Sprint 50
## 3371        Ruhpolding     Sprint 50
## 3372        Ruhpolding     Sprint 50
## 3373        Ruhpolding     Sprint 50
## 3374        Ruhpolding     Sprint 50
## 3375        Ruhpolding     Sprint 50
## 3376        Ruhpolding     Sprint 50
## 3377        Ruhpolding     Sprint 50
## 3378        Ruhpolding     Sprint 50
## 3379        Ruhpolding     Sprint 50
## 3380        Ruhpolding     Sprint 50
## 3381        Ruhpolding     Sprint 50
## 3382        Ruhpolding     Sprint 50
## 3383        Ruhpolding     Sprint 50
## 3384        Ruhpolding     Sprint 50
## 3385        Ruhpolding     Sprint 50
## 3386        Ruhpolding     Sprint 50
## 3387        Ruhpolding     Sprint 50
## 3388        Ruhpolding     Sprint 50
## 3389        Ruhpolding     Sprint 50
## 3390        Ruhpolding     Sprint 50
## 3391        Ruhpolding     Sprint 50
## 3392        Ruhpolding     Sprint 50
## 3393        Ruhpolding     Sprint 50
## 3394        Ruhpolding     Sprint 50
## 3395        Ruhpolding     Sprint 50
## 3396        Ruhpolding     Sprint 50
## 3397        Ruhpolding     Sprint 50
## 3398        Ruhpolding     Sprint 50
## 3399        Ruhpolding     Sprint 50
## 3400        Ruhpolding     Sprint 50
## 3401        Ruhpolding     Sprint 50
## 3402        Ruhpolding     Sprint 50
## 3403        Ruhpolding     Sprint 50
## 3404        Ruhpolding     Sprint 50
## 3405        Ruhpolding     Sprint 50
## 3406        Ruhpolding     Sprint 50
## 3407        Ruhpolding     Sprint 50
## 3408        Ruhpolding     Sprint 50
## 3409        Ruhpolding     Sprint 50
## 3410        Ruhpolding     Sprint 50
## 3411        Ruhpolding     Sprint 50
## 3412        Ruhpolding     Sprint 50
## 3413        Ruhpolding     Sprint 50
## 3414        Ruhpolding     Sprint 50
## 3415        Ruhpolding     Sprint 50
## 3416        Ruhpolding     Sprint 50
## 3417        Ruhpolding     Sprint 50
## 3418        Ruhpolding     Sprint 50
## 3419        Ruhpolding     Sprint 50
## 3420        Ruhpolding     Sprint 50
## 3421        Ruhpolding     Sprint 50
## 3422        Ruhpolding     Sprint 50
## 3423        Ruhpolding     Sprint 50
## 3424        Ruhpolding     Sprint 50
## 3425        Ruhpolding     Sprint 50
## 3426        Ruhpolding     Sprint 50
## 3427        Ruhpolding     Sprint 50
## 3428        Ruhpolding     Sprint 50
## 3429        Ruhpolding Individual 46
## 3430        Ruhpolding Individual 46
## 3431        Ruhpolding Individual 46
## 3432        Ruhpolding Individual 46
## 3433        Ruhpolding Individual 46
## 3434        Ruhpolding Individual 46
## 3435        Ruhpolding Individual 46
## 3436        Ruhpolding Individual 46
## 3437        Ruhpolding Individual 46
## 3438        Ruhpolding Individual 46
## 3439        Ruhpolding Individual 46
## 3440        Ruhpolding Individual 46
## 3441        Ruhpolding Individual 46
## 3442        Ruhpolding Individual 46
## 3443        Ruhpolding Individual 46
## 3444        Ruhpolding Individual 46
## 3445        Ruhpolding Individual 46
## 3446        Ruhpolding Individual 46
## 3447        Ruhpolding Individual 46
## 3448        Ruhpolding Individual 46
## 3449        Ruhpolding Individual 46
## 3450        Ruhpolding Individual 46
## 3451        Ruhpolding Individual 46
## 3452        Ruhpolding Individual 46
## 3453        Ruhpolding Individual 46
## 3454        Ruhpolding Individual 46
## 3455        Ruhpolding Individual 46
## 3456        Ruhpolding Individual 46
## 3457        Ruhpolding Individual 46
## 3458        Ruhpolding Individual 46
## 3459        Ruhpolding Individual 46
## 3460        Ruhpolding Individual 46
## 3461        Ruhpolding Individual 46
## 3462        Ruhpolding Individual 46
## 3463        Ruhpolding Individual 46
## 3464        Ruhpolding Individual 46
## 3465        Ruhpolding Individual 46
## 3466        Ruhpolding Individual 46
## 3467        Ruhpolding Individual 46
## 3468        Ruhpolding Individual 46
## 3469        Ruhpolding Individual 46
## 3470        Ruhpolding Individual 46
## 3471        Ruhpolding Individual 46
## 3472        Ruhpolding Individual 46
## 3473        Ruhpolding Individual 46
## 3474        Ruhpolding Individual 46
## 3475        Ruhpolding Individual 46
## 3476        Ruhpolding Individual 46
## 3477        Ruhpolding Individual 46
## 3478        Ruhpolding Individual 46
## 3479        Ruhpolding Individual 46
## 3480        Ruhpolding Individual 46
## 3481        Ruhpolding Individual 46
## 3482        Ruhpolding Individual 46
## 3483        Ruhpolding Individual 46
## 3484        Ruhpolding Individual 46
## 3485        Ruhpolding Individual 46
## 3486        Ruhpolding Individual 46
## 3487        Ruhpolding Individual 46
## 3488        Ruhpolding Individual 46
## 3489        Ruhpolding Individual 46
## 3490        Ruhpolding Individual 46
## 3491        Ruhpolding Individual 46
## 3492        Ruhpolding Individual 46
## 3493        Ruhpolding Individual 46
## 3494        Ruhpolding Individual 46
## 3495        Ruhpolding Individual 46
## 3496        Ruhpolding Individual 46
## 3497        Ruhpolding Individual 46
## 3498        Ruhpolding Individual 46
## 3499        Ruhpolding Individual 46
## 3500        Ruhpolding Individual 46
## 3501        Ruhpolding Individual 46
## 3502        Ruhpolding Individual 46
## 3503        Ruhpolding Individual 46
## 3504        Ruhpolding Individual 46
## 3505        Ruhpolding Individual 46
## 3506        Ruhpolding Individual 46
## 3507        Ruhpolding Individual 46
## 3508        Ruhpolding Individual 46
## 3509        Ruhpolding Individual 46
## 3510        Ruhpolding Individual 46
## 3511        Ruhpolding Individual 46
## 3512        Ruhpolding Individual 46
## 3513        Ruhpolding Individual 46
## 3514        Ruhpolding Individual 46
## 3515        Ruhpolding Individual 46
## 3516        Ruhpolding Individual 46
## 3517        Ruhpolding Individual 46
## 3518        Ruhpolding Individual 46
## 3519        Ruhpolding Individual 46
## 3520        Ruhpolding Individual 46
## 3521        Ruhpolding Individual 46
## 3522        Ruhpolding Individual 46
## 3523        Ruhpolding Individual 46
## 3524        Ruhpolding Individual 46
## 3525        Ruhpolding Individual 46
## 3526        Ruhpolding Individual 46
## 3527        Ruhpolding Individual 46
## 3528        Ruhpolding Individual 46
## 3529        Ruhpolding Individual 46
## 3530        Ruhpolding Individual 46
## 3531        Ruhpolding Individual 46
## 3532        Ruhpolding Mass start 47
## 3533        Ruhpolding Mass start 47
## 3534        Ruhpolding Mass start 47
## 3535        Ruhpolding Mass start 47
## 3536        Ruhpolding Mass start 47
## 3537        Ruhpolding Mass start 47
## 3538        Ruhpolding Mass start 47
## 3539        Ruhpolding Mass start 47
## 3540        Ruhpolding Mass start 47
## 3541        Ruhpolding Mass start 47
## 3542        Ruhpolding Mass start 47
## 3543        Ruhpolding Mass start 47
## 3544        Ruhpolding Mass start 47
## 3545        Ruhpolding Mass start 47
## 3546        Ruhpolding Mass start 47
## 3547        Ruhpolding Mass start 47
## 3548        Ruhpolding Mass start 47
## 3549        Ruhpolding Mass start 47
## 3550        Ruhpolding Mass start 47
## 3551        Ruhpolding Mass start 47
## 3552        Ruhpolding Mass start 47
## 3553        Ruhpolding Mass start 47
## 3554        Ruhpolding Mass start 47
## 3555        Ruhpolding Mass start 47
## 3556        Ruhpolding Mass start 47
## 3557        Ruhpolding Mass start 47
## 3558        Ruhpolding Mass start 47
## 3559        Ruhpolding Mass start 47
## 3560        Ruhpolding Mass start 47
## 3561        Ruhpolding Mass start 47
## 3562        Ruhpolding Mass start 48
## 3563        Ruhpolding Mass start 48
## 3564        Ruhpolding Mass start 48
## 3565        Ruhpolding Mass start 48
## 3566        Ruhpolding Mass start 48
## 3567        Ruhpolding Mass start 48
## 3568        Ruhpolding Mass start 48
## 3569        Ruhpolding Mass start 48
## 3570        Ruhpolding Mass start 48
## 3571        Ruhpolding Mass start 48
## 3572        Ruhpolding Mass start 48
## 3573        Ruhpolding Mass start 48
## 3574        Ruhpolding Mass start 48
## 3575        Ruhpolding Mass start 48
## 3576        Ruhpolding Mass start 48
## 3577        Ruhpolding Mass start 48
## 3578        Ruhpolding Mass start 48
## 3579        Ruhpolding Mass start 48
## 3580        Ruhpolding Mass start 48
## 3581        Ruhpolding Mass start 48
## 3582        Ruhpolding Mass start 48
## 3583        Ruhpolding Mass start 48
## 3584        Ruhpolding Mass start 48
## 3585        Ruhpolding Mass start 48
## 3586        Ruhpolding Mass start 48
## 3587        Ruhpolding Mass start 48
## 3588        Ruhpolding Mass start 48
## 3589        Ruhpolding Mass start 48
## 3590        Ruhpolding Mass start 48
## 3591        Ruhpolding Mass start 48
## 3592        Ruhpolding    Pursuit 49
## 3593        Ruhpolding    Pursuit 49
## 3594        Ruhpolding    Pursuit 49
## 3595        Ruhpolding    Pursuit 49
## 3596        Ruhpolding    Pursuit 49
## 3597        Ruhpolding    Pursuit 49
## 3598        Ruhpolding    Pursuit 49
## 3599        Ruhpolding    Pursuit 49
## 3600        Ruhpolding    Pursuit 49
## 3601        Ruhpolding    Pursuit 49
## 3602        Ruhpolding    Pursuit 49
## 3603        Ruhpolding    Pursuit 49
## 3604        Ruhpolding    Pursuit 49
## 3605        Ruhpolding    Pursuit 49
## 3606        Ruhpolding    Pursuit 49
## 3607        Ruhpolding    Pursuit 49
## 3608        Ruhpolding    Pursuit 49
## 3609        Ruhpolding    Pursuit 49
## 3610        Ruhpolding    Pursuit 49
## 3611        Ruhpolding    Pursuit 49
## 3612        Ruhpolding    Pursuit 49
## 3613        Ruhpolding    Pursuit 49
## 3614        Ruhpolding    Pursuit 49
## 3615        Ruhpolding    Pursuit 49
## 3616        Ruhpolding    Pursuit 49
## 3617        Ruhpolding    Pursuit 49
## 3618        Ruhpolding    Pursuit 49
## 3619        Ruhpolding    Pursuit 49
## 3620        Ruhpolding    Pursuit 49
## 3621        Ruhpolding    Pursuit 49
## 3622        Ruhpolding    Pursuit 49
## 3623        Ruhpolding    Pursuit 49
## 3624        Ruhpolding    Pursuit 49
## 3625        Ruhpolding    Pursuit 49
## 3626        Ruhpolding    Pursuit 49
## 3627        Ruhpolding    Pursuit 49
## 3628        Ruhpolding    Pursuit 49
## 3629        Ruhpolding    Pursuit 49
## 3630        Ruhpolding    Pursuit 49
## 3631        Ruhpolding    Pursuit 49
## 3632        Ruhpolding    Pursuit 49
## 3633        Ruhpolding    Pursuit 49
## 3634        Ruhpolding    Pursuit 49
## 3635        Ruhpolding    Pursuit 49
## 3636        Ruhpolding    Pursuit 49
## 3637        Ruhpolding    Pursuit 49
## 3638        Ruhpolding    Pursuit 49
## 3639        Ruhpolding    Pursuit 49
## 3640        Ruhpolding    Pursuit 49
## 3641        Ruhpolding    Pursuit 49
## 3642        Ruhpolding    Pursuit 49
## 3643        Ruhpolding    Pursuit 49
## 3644        Ruhpolding    Pursuit 49
## 3645        Ruhpolding    Pursuit 49
## 3646        Ruhpolding    Pursuit 49
## 3647        Ruhpolding    Pursuit 49
## 3648        Ruhpolding    Pursuit 49
## 3649        Ruhpolding    Pursuit 49
## 3650        Anterselva Individual 51
## 3651        Anterselva Individual 51
## 3652        Anterselva Individual 51
## 3653        Anterselva Individual 51
## 3654        Anterselva Individual 51
## 3655        Anterselva Individual 51
## 3656        Anterselva Individual 51
## 3657        Anterselva Individual 51
## 3658        Anterselva Individual 51
## 3659        Anterselva Individual 51
## 3660        Anterselva Individual 51
## 3661        Anterselva Individual 51
## 3662        Anterselva Individual 51
## 3663        Anterselva Individual 51
## 3664        Anterselva Individual 51
## 3665        Anterselva Individual 51
## 3666        Anterselva Individual 51
## 3667        Anterselva Individual 51
## 3668        Anterselva Individual 51
## 3669        Anterselva Individual 51
## 3670        Anterselva Individual 51
## 3671        Anterselva Individual 51
## 3672        Anterselva Individual 51
## 3673        Anterselva Individual 51
## 3674        Anterselva Individual 51
## 3675        Anterselva Individual 51
## 3676        Anterselva Individual 51
## 3677        Anterselva Individual 51
## 3678        Anterselva Individual 51
## 3679        Anterselva Individual 51
## 3680        Anterselva Individual 51
## 3681        Anterselva Individual 51
## 3682        Anterselva Individual 51
## 3683        Anterselva Individual 51
## 3684        Anterselva Individual 51
## 3685        Anterselva Individual 51
## 3686        Anterselva Individual 51
## 3687        Anterselva Individual 51
## 3688        Anterselva Individual 51
## 3689        Anterselva Individual 51
## 3690        Anterselva Individual 51
## 3691        Anterselva Individual 51
## 3692        Anterselva Individual 51
## 3693        Anterselva Individual 51
## 3694        Anterselva Individual 51
## 3695        Anterselva Individual 51
## 3696        Anterselva Individual 51
## 3697        Anterselva Individual 51
## 3698        Anterselva Individual 51
## 3699        Anterselva Individual 51
## 3700        Anterselva Individual 51
## 3701        Anterselva Individual 51
## 3702        Anterselva Individual 51
## 3703        Anterselva Individual 51
## 3704        Anterselva Individual 51
## 3705        Anterselva Individual 51
## 3706        Anterselva Individual 51
## 3707        Anterselva Individual 51
## 3708        Anterselva Individual 51
## 3709        Anterselva Individual 51
## 3710        Anterselva Individual 51
## 3711        Anterselva Individual 51
## 3712        Anterselva Individual 51
## 3713        Anterselva Individual 51
## 3714        Anterselva Individual 51
## 3715        Anterselva Individual 51
## 3716        Anterselva Individual 51
## 3717        Anterselva Individual 51
## 3718        Anterselva Individual 51
## 3719        Anterselva Individual 51
## 3720        Anterselva Individual 51
## 3721        Anterselva Individual 51
## 3722        Anterselva Individual 51
## 3723        Anterselva Individual 51
## 3724        Anterselva Individual 51
## 3725        Anterselva Individual 51
## 3726        Anterselva Individual 51
## 3727        Anterselva Individual 51
## 3728        Anterselva Individual 51
## 3729        Anterselva Individual 51
## 3730        Anterselva Individual 51
## 3731        Anterselva Individual 51
## 3732        Anterselva Individual 51
## 3733        Anterselva Individual 51
## 3734        Anterselva Individual 51
## 3735        Anterselva Individual 51
## 3736        Anterselva Individual 51
## 3737        Anterselva Individual 51
## 3738        Anterselva Individual 51
## 3739        Anterselva Individual 51
## 3740        Anterselva Individual 51
## 3741        Anterselva Individual 51
## 3742        Anterselva Individual 51
## 3743        Anterselva Individual 51
## 3744        Anterselva Individual 51
## 3745        Anterselva Individual 51
## 3746        Anterselva Individual 51
## 3747        Anterselva Individual 51
## 3748        Anterselva Individual 51
## 3749        Anterselva Individual 51
## 3750        Anterselva Individual 51
## 3751        Anterselva Individual 51
## 3752        Anterselva Individual 51
## 3753        Anterselva Individual 51
## 3754        Anterselva Individual 51
## 3755        Anterselva Mass start 52
## 3756        Anterselva Mass start 52
## 3757        Anterselva Mass start 52
## 3758        Anterselva Mass start 52
## 3759        Anterselva Mass start 52
## 3760        Anterselva Mass start 52
## 3761        Anterselva Mass start 52
## 3762        Anterselva Mass start 52
## 3763        Anterselva Mass start 52
## 3764        Anterselva Mass start 52
## 3765        Anterselva Mass start 52
## 3766        Anterselva Mass start 52
## 3767        Anterselva Mass start 52
## 3768        Anterselva Mass start 52
## 3769        Anterselva Mass start 52
## 3770        Anterselva Mass start 52
## 3771        Anterselva Mass start 52
## 3772        Anterselva Mass start 52
## 3773        Anterselva Mass start 52
## 3774        Anterselva Mass start 52
## 3775        Anterselva Mass start 52
## 3776        Anterselva Mass start 52
## 3777        Anterselva Mass start 52
## 3778        Anterselva Mass start 52
## 3779        Anterselva Mass start 52
## 3780        Anterselva Mass start 52
## 3781        Anterselva Mass start 52
## 3782        Anterselva Mass start 52
## 3783        Anterselva Mass start 52
## 3784        Anterselva Mass start 52
## 3785        Hochfilzen     Sprint 56
## 3786        Hochfilzen     Sprint 56
## 3787        Hochfilzen     Sprint 56
## 3788        Hochfilzen     Sprint 56
## 3789        Hochfilzen     Sprint 56
## 3790        Hochfilzen     Sprint 56
## 3791        Hochfilzen     Sprint 56
## 3792        Hochfilzen     Sprint 56
## 3793        Hochfilzen     Sprint 56
## 3794        Hochfilzen     Sprint 56
## 3795        Hochfilzen     Sprint 56
## 3796        Hochfilzen     Sprint 56
## 3797        Hochfilzen     Sprint 56
## 3798        Hochfilzen     Sprint 56
## 3799        Hochfilzen     Sprint 56
## 3800        Hochfilzen     Sprint 56
## 3801        Hochfilzen     Sprint 56
## 3802        Hochfilzen     Sprint 56
## 3803        Hochfilzen     Sprint 56
## 3804        Hochfilzen     Sprint 56
## 3805        Hochfilzen     Sprint 56
## 3806        Hochfilzen     Sprint 56
## 3807        Hochfilzen     Sprint 56
## 3808        Hochfilzen     Sprint 56
## 3809        Hochfilzen     Sprint 56
## 3810        Hochfilzen     Sprint 56
## 3811        Hochfilzen     Sprint 56
## 3812        Hochfilzen     Sprint 56
## 3813        Hochfilzen     Sprint 56
## 3814        Hochfilzen     Sprint 56
## 3815        Hochfilzen     Sprint 56
## 3816        Hochfilzen     Sprint 56
## 3817        Hochfilzen     Sprint 56
## 3818        Hochfilzen     Sprint 56
## 3819        Hochfilzen     Sprint 56
## 3820        Hochfilzen     Sprint 56
## 3821        Hochfilzen     Sprint 56
## 3822        Hochfilzen     Sprint 56
## 3823        Hochfilzen     Sprint 56
## 3824        Hochfilzen     Sprint 56
## 3825        Hochfilzen     Sprint 56
## 3826        Hochfilzen     Sprint 56
## 3827        Hochfilzen     Sprint 56
## 3828        Hochfilzen     Sprint 56
## 3829        Hochfilzen     Sprint 56
## 3830        Hochfilzen     Sprint 56
## 3831        Hochfilzen     Sprint 56
## 3832        Hochfilzen     Sprint 56
## 3833        Hochfilzen     Sprint 56
## 3834        Hochfilzen     Sprint 56
## 3835        Hochfilzen     Sprint 56
## 3836        Hochfilzen     Sprint 56
## 3837        Hochfilzen     Sprint 56
## 3838        Hochfilzen     Sprint 56
## 3839        Hochfilzen     Sprint 56
## 3840        Hochfilzen     Sprint 56
## 3841        Hochfilzen     Sprint 56
## 3842        Hochfilzen     Sprint 56
## 3843        Hochfilzen     Sprint 56
## 3844        Hochfilzen     Sprint 56
## 3845        Hochfilzen     Sprint 56
## 3846        Hochfilzen     Sprint 56
## 3847        Hochfilzen     Sprint 56
## 3848        Hochfilzen     Sprint 56
## 3849        Hochfilzen     Sprint 56
## 3850        Hochfilzen     Sprint 56
## 3851        Hochfilzen     Sprint 56
## 3852        Hochfilzen     Sprint 56
## 3853        Hochfilzen     Sprint 56
## 3854        Hochfilzen     Sprint 56
## 3855        Hochfilzen     Sprint 56
## 3856        Hochfilzen     Sprint 56
## 3857        Hochfilzen     Sprint 56
## 3858        Hochfilzen     Sprint 56
## 3859        Hochfilzen     Sprint 56
## 3860        Hochfilzen     Sprint 56
## 3861        Hochfilzen     Sprint 56
## 3862        Hochfilzen     Sprint 56
## 3863        Hochfilzen     Sprint 56
## 3864        Hochfilzen     Sprint 56
## 3865        Hochfilzen     Sprint 56
## 3866        Hochfilzen     Sprint 56
## 3867        Hochfilzen     Sprint 56
## 3868        Hochfilzen     Sprint 56
## 3869        Hochfilzen     Sprint 56
## 3870        Hochfilzen     Sprint 56
## 3871        Hochfilzen     Sprint 56
## 3872        Hochfilzen     Sprint 56
## 3873        Hochfilzen     Sprint 56
## 3874        Hochfilzen     Sprint 56
## 3875        Hochfilzen     Sprint 56
## 3876        Hochfilzen     Sprint 56
## 3877        Hochfilzen     Sprint 56
## 3878        Hochfilzen     Sprint 56
## 3879        Hochfilzen     Sprint 56
## 3880        Hochfilzen     Sprint 56
## 3881        Hochfilzen     Sprint 56
## 3882        Hochfilzen     Sprint 56
## 3883        Hochfilzen     Sprint 56
## 3884        Hochfilzen     Sprint 56
## 3885        Hochfilzen     Sprint 56
## 3886        Hochfilzen     Sprint 56
## 3887        Hochfilzen Individual 53
## 3888        Hochfilzen Individual 53
## 3889        Hochfilzen Individual 53
## 3890        Hochfilzen Individual 53
## 3891        Hochfilzen Individual 53
## 3892        Hochfilzen Individual 53
## 3893        Hochfilzen Individual 53
## 3894        Hochfilzen Individual 53
## 3895        Hochfilzen Individual 53
## 3896        Hochfilzen Individual 53
## 3897        Hochfilzen Individual 53
## 3898        Hochfilzen Individual 53
## 3899        Hochfilzen Individual 53
## 3900        Hochfilzen Individual 53
## 3901        Hochfilzen Individual 53
## 3902        Hochfilzen Individual 53
## 3903        Hochfilzen Individual 53
## 3904        Hochfilzen Individual 53
## 3905        Hochfilzen Individual 53
## 3906        Hochfilzen Individual 53
## 3907        Hochfilzen Individual 53
## 3908        Hochfilzen Individual 53
## 3909        Hochfilzen Individual 53
## 3910        Hochfilzen Individual 53
## 3911        Hochfilzen Individual 53
## 3912        Hochfilzen Individual 53
## 3913        Hochfilzen Individual 53
## 3914        Hochfilzen Individual 53
## 3915        Hochfilzen Individual 53
## 3916        Hochfilzen Individual 53
## 3917        Hochfilzen Individual 53
## 3918        Hochfilzen Individual 53
## 3919        Hochfilzen Individual 53
## 3920        Hochfilzen Individual 53
## 3921        Hochfilzen Individual 53
## 3922        Hochfilzen Individual 53
## 3923        Hochfilzen Individual 53
## 3924        Hochfilzen Individual 53
## 3925        Hochfilzen Individual 53
## 3926        Hochfilzen Individual 53
## 3927        Hochfilzen Individual 53
## 3928        Hochfilzen Individual 53
## 3929        Hochfilzen Individual 53
## 3930        Hochfilzen Individual 53
## 3931        Hochfilzen Individual 53
## 3932        Hochfilzen Individual 53
## 3933        Hochfilzen Individual 53
## 3934        Hochfilzen Individual 53
## 3935        Hochfilzen Individual 53
## 3936        Hochfilzen Individual 53
## 3937        Hochfilzen Individual 53
## 3938        Hochfilzen Individual 53
## 3939        Hochfilzen Individual 53
## 3940        Hochfilzen Individual 53
## 3941        Hochfilzen Individual 53
## 3942        Hochfilzen Individual 53
## 3943        Hochfilzen Individual 53
## 3944        Hochfilzen Individual 53
## 3945        Hochfilzen Individual 53
## 3946        Hochfilzen Individual 53
## 3947        Hochfilzen Individual 53
## 3948        Hochfilzen Individual 53
## 3949        Hochfilzen Individual 53
## 3950        Hochfilzen Individual 53
## 3951        Hochfilzen Individual 53
## 3952        Hochfilzen Individual 53
## 3953        Hochfilzen Individual 53
## 3954        Hochfilzen Individual 53
## 3955        Hochfilzen Individual 53
## 3956        Hochfilzen Individual 53
## 3957        Hochfilzen Individual 53
## 3958        Hochfilzen Individual 53
## 3959        Hochfilzen Individual 53
## 3960        Hochfilzen Individual 53
## 3961        Hochfilzen Individual 53
## 3962        Hochfilzen Individual 53
## 3963        Hochfilzen Individual 53
## 3964        Hochfilzen Individual 53
## 3965        Hochfilzen Individual 53
## 3966        Hochfilzen Individual 53
## 3967        Hochfilzen Individual 53
## 3968        Hochfilzen Individual 53
## 3969        Hochfilzen Individual 53
## 3970        Hochfilzen Individual 53
## 3971        Hochfilzen Individual 53
## 3972        Hochfilzen Individual 53
## 3973        Hochfilzen Individual 53
## 3974        Hochfilzen Individual 53
## 3975        Hochfilzen Individual 53
## 3976        Hochfilzen Individual 53
## 3977        Hochfilzen Individual 53
## 3978        Hochfilzen Individual 53
## 3979        Hochfilzen Individual 53
## 3980        Hochfilzen Individual 53
## 3981        Hochfilzen Individual 53
## 3982        Hochfilzen Individual 53
## 3983        Hochfilzen Individual 53
## 3984        Hochfilzen Individual 53
## 3985        Hochfilzen Individual 53
## 3986        Hochfilzen Individual 53
## 3987        Hochfilzen Mass start 54
## 3988        Hochfilzen Mass start 54
## 3989        Hochfilzen Mass start 54
## 3990        Hochfilzen Mass start 54
## 3991        Hochfilzen Mass start 54
## 3992        Hochfilzen Mass start 54
## 3993        Hochfilzen Mass start 54
## 3994        Hochfilzen Mass start 54
## 3995        Hochfilzen Mass start 54
## 3996        Hochfilzen Mass start 54
## 3997        Hochfilzen Mass start 54
## 3998        Hochfilzen Mass start 54
## 3999        Hochfilzen Mass start 54
## 4000        Hochfilzen Mass start 54
## 4001        Hochfilzen Mass start 54
## 4002        Hochfilzen Mass start 54
## 4003        Hochfilzen Mass start 54
## 4004        Hochfilzen Mass start 54
## 4005        Hochfilzen Mass start 54
## 4006        Hochfilzen Mass start 54
## 4007        Hochfilzen Mass start 54
## 4008        Hochfilzen Mass start 54
## 4009        Hochfilzen Mass start 54
## 4010        Hochfilzen Mass start 54
## 4011        Hochfilzen Mass start 54
## 4012        Hochfilzen Mass start 54
## 4013        Hochfilzen Mass start 54
## 4014        Hochfilzen Mass start 54
## 4015        Hochfilzen Mass start 54
## 4016        Hochfilzen Mass start 54
## 4017        Hochfilzen    Pursuit 55
## 4018        Hochfilzen    Pursuit 55
## 4019        Hochfilzen    Pursuit 55
## 4020        Hochfilzen    Pursuit 55
## 4021        Hochfilzen    Pursuit 55
## 4022        Hochfilzen    Pursuit 55
## 4023        Hochfilzen    Pursuit 55
## 4024        Hochfilzen    Pursuit 55
## 4025        Hochfilzen    Pursuit 55
## 4026        Hochfilzen    Pursuit 55
## 4027        Hochfilzen    Pursuit 55
## 4028        Hochfilzen    Pursuit 55
## 4029        Hochfilzen    Pursuit 55
## 4030        Hochfilzen    Pursuit 55
## 4031        Hochfilzen    Pursuit 55
## 4032        Hochfilzen    Pursuit 55
## 4033        Hochfilzen    Pursuit 55
## 4034        Hochfilzen    Pursuit 55
## 4035        Hochfilzen    Pursuit 55
## 4036        Hochfilzen    Pursuit 55
## 4037        Hochfilzen    Pursuit 55
## 4038        Hochfilzen    Pursuit 55
## 4039        Hochfilzen    Pursuit 55
## 4040        Hochfilzen    Pursuit 55
## 4041        Hochfilzen    Pursuit 55
## 4042        Hochfilzen    Pursuit 55
## 4043        Hochfilzen    Pursuit 55
## 4044        Hochfilzen    Pursuit 55
## 4045        Hochfilzen    Pursuit 55
## 4046        Hochfilzen    Pursuit 55
## 4047        Hochfilzen    Pursuit 55
## 4048        Hochfilzen    Pursuit 55
## 4049        Hochfilzen    Pursuit 55
## 4050        Hochfilzen    Pursuit 55
## 4051        Hochfilzen    Pursuit 55
## 4052        Hochfilzen    Pursuit 55
## 4053        Hochfilzen    Pursuit 55
## 4054        Hochfilzen    Pursuit 55
## 4055        Hochfilzen    Pursuit 55
## 4056        Hochfilzen    Pursuit 55
## 4057        Hochfilzen    Pursuit 55
## 4058        Hochfilzen    Pursuit 55
## 4059        Hochfilzen    Pursuit 55
## 4060        Hochfilzen    Pursuit 55
## 4061        Hochfilzen    Pursuit 55
## 4062        Hochfilzen    Pursuit 55
## 4063        Hochfilzen    Pursuit 55
## 4064        Hochfilzen    Pursuit 55
## 4065        Hochfilzen    Pursuit 55
## 4066        Hochfilzen    Pursuit 55
## 4067        Hochfilzen    Pursuit 55
## 4068        Hochfilzen    Pursuit 55
## 4069        Hochfilzen    Pursuit 55
## 4070        Hochfilzen    Pursuit 55
## 4071        Hochfilzen    Pursuit 55
## 4072        Hochfilzen    Pursuit 55
## 4073        Hochfilzen    Pursuit 55
## 4074       Kontiolahti     Sprint 58
## 4075       Kontiolahti     Sprint 58
## 4076       Kontiolahti     Sprint 58
## 4077       Kontiolahti     Sprint 58
## 4078       Kontiolahti     Sprint 58
## 4079       Kontiolahti     Sprint 58
## 4080       Kontiolahti     Sprint 58
## 4081       Kontiolahti     Sprint 58
## 4082       Kontiolahti     Sprint 58
## 4083       Kontiolahti     Sprint 58
## 4084       Kontiolahti     Sprint 58
## 4085       Kontiolahti     Sprint 58
## 4086       Kontiolahti     Sprint 58
## 4087       Kontiolahti     Sprint 58
## 4088       Kontiolahti     Sprint 58
## 4089       Kontiolahti     Sprint 58
## 4090       Kontiolahti     Sprint 58
## 4091       Kontiolahti     Sprint 58
## 4092       Kontiolahti     Sprint 58
## 4093       Kontiolahti     Sprint 58
## 4094       Kontiolahti     Sprint 58
## 4095       Kontiolahti     Sprint 58
## 4096       Kontiolahti     Sprint 58
## 4097       Kontiolahti     Sprint 58
## 4098       Kontiolahti     Sprint 58
## 4099       Kontiolahti     Sprint 58
## 4100       Kontiolahti     Sprint 58
## 4101       Kontiolahti     Sprint 58
## 4102       Kontiolahti     Sprint 58
## 4103       Kontiolahti     Sprint 58
## 4104       Kontiolahti     Sprint 58
## 4105       Kontiolahti     Sprint 58
## 4106       Kontiolahti     Sprint 58
## 4107       Kontiolahti     Sprint 58
## 4108       Kontiolahti     Sprint 58
## 4109       Kontiolahti     Sprint 58
## 4110       Kontiolahti     Sprint 58
## 4111       Kontiolahti     Sprint 58
## 4112       Kontiolahti     Sprint 58
## 4113       Kontiolahti     Sprint 58
## 4114       Kontiolahti     Sprint 58
## 4115       Kontiolahti     Sprint 58
## 4116       Kontiolahti     Sprint 58
## 4117       Kontiolahti     Sprint 58
## 4118       Kontiolahti     Sprint 58
## 4119       Kontiolahti     Sprint 58
## 4120       Kontiolahti     Sprint 58
## 4121       Kontiolahti     Sprint 58
## 4122       Kontiolahti     Sprint 58
## 4123       Kontiolahti     Sprint 58
## 4124       Kontiolahti     Sprint 58
## 4125       Kontiolahti     Sprint 58
## 4126       Kontiolahti     Sprint 58
## 4127       Kontiolahti     Sprint 58
## 4128       Kontiolahti     Sprint 58
## 4129       Kontiolahti     Sprint 58
## 4130       Kontiolahti     Sprint 58
## 4131       Kontiolahti     Sprint 58
## 4132       Kontiolahti     Sprint 58
## 4133       Kontiolahti     Sprint 58
## 4134       Kontiolahti     Sprint 58
## 4135       Kontiolahti     Sprint 58
## 4136       Kontiolahti     Sprint 58
## 4137       Kontiolahti     Sprint 58
## 4138       Kontiolahti     Sprint 58
## 4139       Kontiolahti     Sprint 58
## 4140       Kontiolahti     Sprint 58
## 4141       Kontiolahti     Sprint 58
## 4142       Kontiolahti     Sprint 58
## 4143       Kontiolahti     Sprint 58
## 4144       Kontiolahti     Sprint 58
## 4145       Kontiolahti     Sprint 58
## 4146       Kontiolahti     Sprint 58
## 4147       Kontiolahti     Sprint 58
## 4148       Kontiolahti     Sprint 58
## 4149       Kontiolahti     Sprint 58
## 4150       Kontiolahti     Sprint 58
## 4151       Kontiolahti     Sprint 58
## 4152       Kontiolahti     Sprint 58
## 4153       Kontiolahti     Sprint 58
## 4154       Kontiolahti     Sprint 58
## 4155       Kontiolahti     Sprint 58
## 4156       Kontiolahti     Sprint 58
## 4157       Kontiolahti     Sprint 58
## 4158       Kontiolahti     Sprint 58
## 4159       Kontiolahti     Sprint 58
## 4160       Kontiolahti     Sprint 58
## 4161       Kontiolahti     Sprint 58
## 4162       Kontiolahti     Sprint 58
## 4163       Kontiolahti     Sprint 58
## 4164       Kontiolahti     Sprint 58
## 4165       Kontiolahti     Sprint 58
## 4166       Kontiolahti     Sprint 58
## 4167       Kontiolahti     Sprint 58
## 4168       Kontiolahti     Sprint 58
## 4169       Kontiolahti     Sprint 58
## 4170       Kontiolahti     Sprint 58
## 4171       Kontiolahti     Sprint 58
## 4172       Kontiolahti     Sprint 58
## 4173       Kontiolahti     Sprint 58
## 4174       Kontiolahti     Sprint 58
## 4175       Kontiolahti    Pursuit 57
## 4176       Kontiolahti    Pursuit 57
## 4177       Kontiolahti    Pursuit 57
## 4178       Kontiolahti    Pursuit 57
## 4179       Kontiolahti    Pursuit 57
## 4180       Kontiolahti    Pursuit 57
## 4181       Kontiolahti    Pursuit 57
## 4182       Kontiolahti    Pursuit 57
## 4183       Kontiolahti    Pursuit 57
## 4184       Kontiolahti    Pursuit 57
## 4185       Kontiolahti    Pursuit 57
## 4186       Kontiolahti    Pursuit 57
## 4187       Kontiolahti    Pursuit 57
## 4188       Kontiolahti    Pursuit 57
## 4189       Kontiolahti    Pursuit 57
## 4190       Kontiolahti    Pursuit 57
## 4191       Kontiolahti    Pursuit 57
## 4192       Kontiolahti    Pursuit 57
## 4193       Kontiolahti    Pursuit 57
## 4194       Kontiolahti    Pursuit 57
## 4195       Kontiolahti    Pursuit 57
## 4196       Kontiolahti    Pursuit 57
## 4197       Kontiolahti    Pursuit 57
## 4198       Kontiolahti    Pursuit 57
## 4199       Kontiolahti    Pursuit 57
## 4200       Kontiolahti    Pursuit 57
## 4201       Kontiolahti    Pursuit 57
## 4202       Kontiolahti    Pursuit 57
## 4203       Kontiolahti    Pursuit 57
## 4204       Kontiolahti    Pursuit 57
## 4205       Kontiolahti    Pursuit 57
## 4206       Kontiolahti    Pursuit 57
## 4207       Kontiolahti    Pursuit 57
## 4208       Kontiolahti    Pursuit 57
## 4209       Kontiolahti    Pursuit 57
## 4210       Kontiolahti    Pursuit 57
## 4211       Kontiolahti    Pursuit 57
## 4212       Kontiolahti    Pursuit 57
## 4213       Kontiolahti    Pursuit 57
## 4214       Kontiolahti    Pursuit 57
## 4215       Kontiolahti    Pursuit 57
## 4216       Kontiolahti    Pursuit 57
## 4217       Kontiolahti    Pursuit 57
## 4218       Kontiolahti    Pursuit 57
## 4219       Kontiolahti    Pursuit 57
## 4220       Kontiolahti    Pursuit 57
## 4221       Kontiolahti    Pursuit 57
## 4222       Kontiolahti    Pursuit 57
## 4223       Kontiolahti    Pursuit 57
## 4224       Kontiolahti    Pursuit 57
## 4225       Kontiolahti    Pursuit 57
## 4226       Kontiolahti    Pursuit 57
## 4227       Kontiolahti    Pursuit 57
## 4228       Kontiolahti    Pursuit 57
## 4229        Nove_Mesto     Sprint 61
## 4230        Nove_Mesto     Sprint 61
## 4231        Nove_Mesto     Sprint 61
## 4232        Nove_Mesto     Sprint 61
## 4233        Nove_Mesto     Sprint 61
## 4234        Nove_Mesto     Sprint 61
## 4235        Nove_Mesto     Sprint 61
## 4236        Nove_Mesto     Sprint 61
## 4237        Nove_Mesto     Sprint 61
## 4238        Nove_Mesto     Sprint 61
## 4239        Nove_Mesto     Sprint 61
## 4240        Nove_Mesto     Sprint 61
## 4241        Nove_Mesto     Sprint 61
## 4242        Nove_Mesto     Sprint 61
## 4243        Nove_Mesto     Sprint 61
## 4244        Nove_Mesto     Sprint 61
## 4245        Nove_Mesto     Sprint 61
## 4246        Nove_Mesto     Sprint 61
## 4247        Nove_Mesto     Sprint 61
## 4248        Nove_Mesto     Sprint 61
## 4249        Nove_Mesto     Sprint 61
## 4250        Nove_Mesto     Sprint 61
## 4251        Nove_Mesto     Sprint 61
## 4252        Nove_Mesto     Sprint 61
## 4253        Nove_Mesto     Sprint 61
## 4254        Nove_Mesto     Sprint 61
## 4255        Nove_Mesto     Sprint 61
## 4256        Nove_Mesto     Sprint 61
## 4257        Nove_Mesto     Sprint 61
## 4258        Nove_Mesto     Sprint 61
## 4259        Nove_Mesto     Sprint 61
## 4260        Nove_Mesto     Sprint 61
## 4261        Nove_Mesto     Sprint 61
## 4262        Nove_Mesto     Sprint 61
## 4263        Nove_Mesto     Sprint 61
## 4264        Nove_Mesto     Sprint 61
## 4265        Nove_Mesto     Sprint 61
## 4266        Nove_Mesto     Sprint 61
## 4267        Nove_Mesto     Sprint 61
## 4268        Nove_Mesto     Sprint 61
## 4269        Nove_Mesto     Sprint 61
## 4270        Nove_Mesto     Sprint 61
## 4271        Nove_Mesto     Sprint 61
## 4272        Nove_Mesto     Sprint 61
## 4273        Nove_Mesto     Sprint 61
## 4274        Nove_Mesto     Sprint 61
## 4275        Nove_Mesto     Sprint 61
## 4276        Nove_Mesto     Sprint 61
## 4277        Nove_Mesto     Sprint 61
## 4278        Nove_Mesto     Sprint 61
## 4279        Nove_Mesto     Sprint 61
## 4280        Nove_Mesto     Sprint 61
## 4281        Nove_Mesto     Sprint 61
## 4282        Nove_Mesto     Sprint 61
## 4283        Nove_Mesto     Sprint 61
## 4284        Nove_Mesto     Sprint 61
## 4285        Nove_Mesto     Sprint 61
## 4286        Nove_Mesto     Sprint 61
## 4287        Nove_Mesto     Sprint 61
## 4288        Nove_Mesto     Sprint 61
## 4289        Nove_Mesto     Sprint 61
## 4290        Nove_Mesto     Sprint 61
## 4291        Nove_Mesto     Sprint 61
## 4292        Nove_Mesto     Sprint 61
## 4293        Nove_Mesto     Sprint 61
## 4294        Nove_Mesto     Sprint 61
## 4295        Nove_Mesto     Sprint 61
## 4296        Nove_Mesto     Sprint 61
## 4297        Nove_Mesto     Sprint 61
## 4298        Nove_Mesto     Sprint 61
## 4299        Nove_Mesto     Sprint 61
## 4300        Nove_Mesto     Sprint 61
## 4301        Nove_Mesto     Sprint 61
## 4302        Nove_Mesto     Sprint 61
## 4303        Nove_Mesto     Sprint 61
## 4304        Nove_Mesto     Sprint 61
## 4305        Nove_Mesto     Sprint 61
## 4306        Nove_Mesto     Sprint 61
## 4307        Nove_Mesto     Sprint 61
## 4308        Nove_Mesto     Sprint 61
## 4309        Nove_Mesto     Sprint 61
## 4310        Nove_Mesto     Sprint 61
## 4311        Nove_Mesto     Sprint 61
## 4312        Nove_Mesto     Sprint 61
## 4313        Nove_Mesto     Sprint 61
## 4314        Nove_Mesto     Sprint 61
## 4315        Nove_Mesto     Sprint 61
## 4316        Nove_Mesto     Sprint 61
## 4317        Nove_Mesto     Sprint 61
## 4318        Nove_Mesto     Sprint 61
## 4319        Nove_Mesto     Sprint 61
## 4320        Nove_Mesto     Sprint 61
## 4321        Nove_Mesto     Sprint 61
## 4322        Nove_Mesto     Sprint 61
## 4323        Nove_Mesto     Sprint 61
## 4324        Nove_Mesto     Sprint 61
## 4325        Nove_Mesto     Sprint 61
## 4326        Nove_Mesto     Sprint 61
## 4327        Nove_Mesto     Sprint 61
## 4328        Nove_Mesto     Sprint 61
## 4329        Nove_Mesto     Sprint 61
## 4330        Nove_Mesto Mass start 59
## 4331        Nove_Mesto Mass start 59
## 4332        Nove_Mesto Mass start 59
## 4333        Nove_Mesto Mass start 59
## 4334        Nove_Mesto Mass start 59
## 4335        Nove_Mesto Mass start 59
## 4336        Nove_Mesto Mass start 59
## 4337        Nove_Mesto Mass start 59
## 4338        Nove_Mesto Mass start 59
## 4339        Nove_Mesto Mass start 59
## 4340        Nove_Mesto Mass start 59
## 4341        Nove_Mesto Mass start 59
## 4342        Nove_Mesto Mass start 59
## 4343        Nove_Mesto Mass start 59
## 4344        Nove_Mesto Mass start 59
## 4345        Nove_Mesto Mass start 59
## 4346        Nove_Mesto Mass start 59
## 4347        Nove_Mesto Mass start 59
## 4348        Nove_Mesto Mass start 59
## 4349        Nove_Mesto Mass start 59
## 4350        Nove_Mesto Mass start 59
## 4351        Nove_Mesto Mass start 59
## 4352        Nove_Mesto Mass start 59
## 4353        Nove_Mesto Mass start 59
## 4354        Nove_Mesto Mass start 59
## 4355        Nove_Mesto Mass start 59
## 4356        Nove_Mesto Mass start 59
## 4357        Nove_Mesto Mass start 59
## 4358        Nove_Mesto Mass start 59
## 4359        Nove_Mesto Mass start 59
## 4360        Nove_Mesto    Pursuit 60
## 4361        Nove_Mesto    Pursuit 60
## 4362        Nove_Mesto    Pursuit 60
## 4363        Nove_Mesto    Pursuit 60
## 4364        Nove_Mesto    Pursuit 60
## 4365        Nove_Mesto    Pursuit 60
## 4366        Nove_Mesto    Pursuit 60
## 4367        Nove_Mesto    Pursuit 60
## 4368        Nove_Mesto    Pursuit 60
## 4369        Nove_Mesto    Pursuit 60
## 4370        Nove_Mesto    Pursuit 60
## 4371        Nove_Mesto    Pursuit 60
## 4372        Nove_Mesto    Pursuit 60
## 4373        Nove_Mesto    Pursuit 60
## 4374        Nove_Mesto    Pursuit 60
## 4375        Nove_Mesto    Pursuit 60
## 4376        Nove_Mesto    Pursuit 60
## 4377        Nove_Mesto    Pursuit 60
## 4378        Nove_Mesto    Pursuit 60
## 4379        Nove_Mesto    Pursuit 60
## 4380        Nove_Mesto    Pursuit 60
## 4381        Nove_Mesto    Pursuit 60
## 4382        Nove_Mesto    Pursuit 60
## 4383        Nove_Mesto    Pursuit 60
## 4384        Nove_Mesto    Pursuit 60
## 4385        Nove_Mesto    Pursuit 60
## 4386        Nove_Mesto    Pursuit 60
## 4387        Nove_Mesto    Pursuit 60
## 4388        Nove_Mesto    Pursuit 60
## 4389        Nove_Mesto    Pursuit 60
## 4390        Nove_Mesto    Pursuit 60
## 4391        Nove_Mesto    Pursuit 60
## 4392        Nove_Mesto    Pursuit 60
## 4393        Nove_Mesto    Pursuit 60
## 4394        Nove_Mesto    Pursuit 60
## 4395        Nove_Mesto    Pursuit 60
## 4396        Nove_Mesto    Pursuit 60
## 4397        Nove_Mesto    Pursuit 60
## 4398        Nove_Mesto    Pursuit 60
## 4399        Nove_Mesto    Pursuit 60
## 4400        Nove_Mesto    Pursuit 60
## 4401        Nove_Mesto    Pursuit 60
## 4402        Nove_Mesto    Pursuit 60
## 4403        Nove_Mesto    Pursuit 60
## 4404        Nove_Mesto    Pursuit 60
## 4405        Nove_Mesto    Pursuit 60
## 4406        Nove_Mesto    Pursuit 60
## 4407        Nove_Mesto    Pursuit 60
## 4408        Nove_Mesto    Pursuit 60
## 4409        Nove_Mesto    Pursuit 60
## 4410        Nove_Mesto    Pursuit 60
## 4411        Nove_Mesto    Pursuit 60
## 4412        Nove_Mesto    Pursuit 60
## 4413        Nove_Mesto    Pursuit 60
## 4414        Nove_Mesto    Pursuit 60
## 4415        Nove_Mesto    Pursuit 60
## 4416        Nove_Mesto    Pursuit 60
## 4417           Oberhof     Sprint 64
## 4418           Oberhof     Sprint 64
## 4419           Oberhof     Sprint 64
## 4420           Oberhof     Sprint 64
## 4421           Oberhof     Sprint 64
## 4422           Oberhof     Sprint 64
## 4423           Oberhof     Sprint 64
## 4424           Oberhof     Sprint 64
## 4425           Oberhof     Sprint 64
## 4426           Oberhof     Sprint 64
## 4427           Oberhof     Sprint 64
## 4428           Oberhof     Sprint 64
## 4429           Oberhof     Sprint 64
## 4430           Oberhof     Sprint 64
## 4431           Oberhof     Sprint 64
## 4432           Oberhof     Sprint 64
## 4433           Oberhof     Sprint 64
## 4434           Oberhof     Sprint 64
## 4435           Oberhof     Sprint 64
## 4436           Oberhof     Sprint 64
## 4437           Oberhof     Sprint 64
## 4438           Oberhof     Sprint 64
## 4439           Oberhof     Sprint 64
## 4440           Oberhof     Sprint 64
## 4441           Oberhof     Sprint 64
## 4442           Oberhof     Sprint 64
## 4443           Oberhof     Sprint 64
## 4444           Oberhof     Sprint 64
## 4445           Oberhof     Sprint 64
## 4446           Oberhof     Sprint 64
## 4447           Oberhof     Sprint 64
## 4448           Oberhof     Sprint 64
## 4449           Oberhof     Sprint 64
## 4450           Oberhof     Sprint 64
## 4451           Oberhof     Sprint 64
## 4452           Oberhof     Sprint 64
## 4453           Oberhof     Sprint 64
## 4454           Oberhof     Sprint 64
## 4455           Oberhof     Sprint 64
## 4456           Oberhof     Sprint 64
## 4457           Oberhof     Sprint 64
## 4458           Oberhof     Sprint 64
## 4459           Oberhof     Sprint 64
## 4460           Oberhof     Sprint 64
## 4461           Oberhof     Sprint 64
## 4462           Oberhof     Sprint 64
## 4463           Oberhof     Sprint 64
## 4464           Oberhof     Sprint 64
## 4465           Oberhof     Sprint 64
## 4466           Oberhof     Sprint 64
## 4467           Oberhof     Sprint 64
## 4468           Oberhof     Sprint 64
## 4469           Oberhof     Sprint 64
## 4470           Oberhof     Sprint 64
## 4471           Oberhof     Sprint 64
## 4472           Oberhof     Sprint 64
## 4473           Oberhof     Sprint 64
## 4474           Oberhof     Sprint 64
## 4475           Oberhof     Sprint 64
## 4476           Oberhof     Sprint 64
## 4477           Oberhof     Sprint 64
## 4478           Oberhof     Sprint 64
## 4479           Oberhof     Sprint 64
## 4480           Oberhof     Sprint 64
## 4481           Oberhof     Sprint 64
## 4482           Oberhof     Sprint 64
## 4483           Oberhof     Sprint 64
## 4484           Oberhof     Sprint 64
## 4485           Oberhof     Sprint 64
## 4486           Oberhof     Sprint 64
## 4487           Oberhof     Sprint 64
## 4488           Oberhof     Sprint 64
## 4489           Oberhof     Sprint 64
## 4490           Oberhof     Sprint 64
## 4491           Oberhof     Sprint 64
## 4492           Oberhof     Sprint 64
## 4493           Oberhof     Sprint 64
## 4494           Oberhof     Sprint 64
## 4495           Oberhof     Sprint 64
## 4496           Oberhof     Sprint 64
## 4497           Oberhof     Sprint 64
## 4498           Oberhof     Sprint 64
## 4499           Oberhof     Sprint 64
## 4500           Oberhof     Sprint 64
## 4501           Oberhof     Sprint 64
## 4502           Oberhof     Sprint 64
## 4503           Oberhof     Sprint 64
## 4504           Oberhof     Sprint 64
## 4505           Oberhof     Sprint 64
## 4506           Oberhof     Sprint 64
## 4507           Oberhof     Sprint 64
## 4508           Oberhof     Sprint 64
## 4509           Oberhof     Sprint 64
## 4510           Oberhof     Sprint 64
## 4511           Oberhof     Sprint 64
## 4512           Oberhof     Sprint 64
## 4513           Oberhof     Sprint 64
## 4514           Oberhof     Sprint 64
## 4515           Oberhof     Sprint 64
## 4516           Oberhof     Sprint 64
## 4517           Oberhof     Sprint 64
## 4518           Oberhof     Sprint 64
## 4519           Oberhof Mass start 62
## 4520           Oberhof Mass start 62
## 4521           Oberhof Mass start 62
## 4522           Oberhof Mass start 62
## 4523           Oberhof Mass start 62
## 4524           Oberhof Mass start 62
## 4525           Oberhof Mass start 62
## 4526           Oberhof Mass start 62
## 4527           Oberhof Mass start 62
## 4528           Oberhof Mass start 62
## 4529           Oberhof Mass start 62
## 4530           Oberhof Mass start 62
## 4531           Oberhof Mass start 62
## 4532           Oberhof Mass start 62
## 4533           Oberhof Mass start 62
## 4534           Oberhof Mass start 62
## 4535           Oberhof Mass start 62
## 4536           Oberhof Mass start 62
## 4537           Oberhof Mass start 62
## 4538           Oberhof Mass start 62
## 4539           Oberhof Mass start 62
## 4540           Oberhof Mass start 62
## 4541           Oberhof Mass start 62
## 4542           Oberhof Mass start 62
## 4543           Oberhof Mass start 62
## 4544           Oberhof Mass start 62
## 4545           Oberhof Mass start 62
## 4546           Oberhof Mass start 62
## 4547           Oberhof Mass start 62
## 4548           Oberhof    Pursuit 63
## 4549           Oberhof    Pursuit 63
## 4550           Oberhof    Pursuit 63
## 4551           Oberhof    Pursuit 63
## 4552           Oberhof    Pursuit 63
## 4553           Oberhof    Pursuit 63
## 4554           Oberhof    Pursuit 63
## 4555           Oberhof    Pursuit 63
## 4556           Oberhof    Pursuit 63
## 4557           Oberhof    Pursuit 63
## 4558           Oberhof    Pursuit 63
## 4559           Oberhof    Pursuit 63
## 4560           Oberhof    Pursuit 63
## 4561           Oberhof    Pursuit 63
## 4562           Oberhof    Pursuit 63
## 4563           Oberhof    Pursuit 63
## 4564           Oberhof    Pursuit 63
## 4565           Oberhof    Pursuit 63
## 4566           Oberhof    Pursuit 63
## 4567           Oberhof    Pursuit 63
## 4568           Oberhof    Pursuit 63
## 4569           Oberhof    Pursuit 63
## 4570           Oberhof    Pursuit 63
## 4571           Oberhof    Pursuit 63
## 4572           Oberhof    Pursuit 63
## 4573           Oberhof    Pursuit 63
## 4574           Oberhof    Pursuit 63
## 4575           Oberhof    Pursuit 63
## 4576           Oberhof    Pursuit 63
## 4577           Oberhof    Pursuit 63
## 4578           Oberhof    Pursuit 63
## 4579           Oberhof    Pursuit 63
## 4580           Oberhof    Pursuit 63
## 4581           Oberhof    Pursuit 63
## 4582           Oberhof    Pursuit 63
## 4583           Oberhof    Pursuit 63
## 4584           Oberhof    Pursuit 63
## 4585           Oberhof    Pursuit 63
## 4586           Oberhof    Pursuit 63
## 4587           Oberhof    Pursuit 63
## 4588           Oberhof    Pursuit 63
## 4589           Oberhof    Pursuit 63
## 4590           Oberhof    Pursuit 63
## 4591           Oberhof    Pursuit 63
## 4592           Oberhof    Pursuit 63
## 4593           Oberhof    Pursuit 63
## 4594           Oberhof    Pursuit 63
## 4595           Oberhof    Pursuit 63
## 4596           Oberhof    Pursuit 63
## 4597           Oberhof    Pursuit 63
## 4598           Oberhof    Pursuit 63
## 4599           Oberhof    Pursuit 63
## 4600           Oberhof    Pursuit 63
## 4601           Oberhof    Pursuit 63
## 4602           Oberhof    Pursuit 63
## 4603           Oberhof    Pursuit 63
## 4604        Oestersund     Sprint 67
## 4605        Oestersund     Sprint 67
## 4606        Oestersund     Sprint 67
## 4607        Oestersund     Sprint 67
## 4608        Oestersund     Sprint 67
## 4609        Oestersund     Sprint 67
## 4610        Oestersund     Sprint 67
## 4611        Oestersund     Sprint 67
## 4612        Oestersund     Sprint 67
## 4613        Oestersund     Sprint 67
## 4614        Oestersund     Sprint 67
## 4615        Oestersund     Sprint 67
## 4616        Oestersund     Sprint 67
## 4617        Oestersund     Sprint 67
## 4618        Oestersund     Sprint 67
## 4619        Oestersund     Sprint 67
## 4620        Oestersund     Sprint 67
## 4621        Oestersund     Sprint 67
## 4622        Oestersund     Sprint 67
## 4623        Oestersund     Sprint 67
## 4624        Oestersund     Sprint 67
## 4625        Oestersund     Sprint 67
## 4626        Oestersund     Sprint 67
## 4627        Oestersund     Sprint 67
## 4628        Oestersund     Sprint 67
## 4629        Oestersund     Sprint 67
## 4630        Oestersund     Sprint 67
## 4631        Oestersund     Sprint 67
## 4632        Oestersund     Sprint 67
## 4633        Oestersund     Sprint 67
## 4634        Oestersund     Sprint 67
## 4635        Oestersund     Sprint 67
## 4636        Oestersund     Sprint 67
## 4637        Oestersund     Sprint 67
## 4638        Oestersund     Sprint 67
## 4639        Oestersund     Sprint 67
## 4640        Oestersund     Sprint 67
## 4641        Oestersund     Sprint 67
## 4642        Oestersund     Sprint 67
## 4643        Oestersund     Sprint 67
## 4644        Oestersund     Sprint 67
## 4645        Oestersund     Sprint 67
## 4646        Oestersund     Sprint 67
## 4647        Oestersund     Sprint 67
## 4648        Oestersund     Sprint 67
## 4649        Oestersund     Sprint 67
## 4650        Oestersund     Sprint 67
## 4651        Oestersund     Sprint 67
## 4652        Oestersund     Sprint 67
## 4653        Oestersund     Sprint 67
## 4654        Oestersund     Sprint 67
## 4655        Oestersund     Sprint 67
## 4656        Oestersund     Sprint 67
## 4657        Oestersund     Sprint 67
## 4658        Oestersund     Sprint 67
## 4659        Oestersund     Sprint 67
## 4660        Oestersund     Sprint 67
## 4661        Oestersund     Sprint 67
## 4662        Oestersund     Sprint 67
## 4663        Oestersund     Sprint 67
## 4664        Oestersund     Sprint 67
## 4665        Oestersund     Sprint 67
## 4666        Oestersund     Sprint 67
## 4667        Oestersund     Sprint 67
## 4668        Oestersund     Sprint 67
## 4669        Oestersund     Sprint 67
## 4670        Oestersund     Sprint 67
## 4671        Oestersund     Sprint 67
## 4672        Oestersund     Sprint 67
## 4673        Oestersund     Sprint 67
## 4674        Oestersund     Sprint 67
## 4675        Oestersund     Sprint 67
## 4676        Oestersund     Sprint 67
## 4677        Oestersund     Sprint 67
## 4678        Oestersund     Sprint 67
## 4679        Oestersund     Sprint 67
## 4680        Oestersund     Sprint 67
## 4681        Oestersund     Sprint 67
## 4682        Oestersund     Sprint 67
## 4683        Oestersund     Sprint 67
## 4684        Oestersund     Sprint 67
## 4685        Oestersund     Sprint 67
## 4686        Oestersund     Sprint 67
## 4687        Oestersund     Sprint 67
## 4688        Oestersund     Sprint 67
## 4689        Oestersund     Sprint 67
## 4690        Oestersund     Sprint 67
## 4691        Oestersund     Sprint 67
## 4692        Oestersund     Sprint 67
## 4693        Oestersund     Sprint 67
## 4694        Oestersund     Sprint 67
## 4695        Oestersund     Sprint 67
## 4696        Oestersund     Sprint 67
## 4697        Oestersund     Sprint 67
## 4698        Oestersund     Sprint 67
## 4699        Oestersund     Sprint 67
## 4700        Oestersund     Sprint 67
## 4701        Oestersund     Sprint 67
## 4702        Oestersund     Sprint 67
## 4703        Oestersund     Sprint 67
## 4704        Oestersund     Sprint 67
## 4705        Oestersund     Sprint 67
## 4706        Oestersund     Sprint 67
## 4707        Oestersund     Sprint 67
## 4708        Oestersund     Sprint 67
## 4709        Oestersund Individual 65
## 4710        Oestersund Individual 65
## 4711        Oestersund Individual 65
## 4712        Oestersund Individual 65
## 4713        Oestersund Individual 65
## 4714        Oestersund Individual 65
## 4715        Oestersund Individual 65
## 4716        Oestersund Individual 65
## 4717        Oestersund Individual 65
## 4718        Oestersund Individual 65
## 4719        Oestersund Individual 65
## 4720        Oestersund Individual 65
## 4721        Oestersund Individual 65
## 4722        Oestersund Individual 65
## 4723        Oestersund Individual 65
## 4724        Oestersund Individual 65
## 4725        Oestersund Individual 65
## 4726        Oestersund Individual 65
## 4727        Oestersund Individual 65
## 4728        Oestersund Individual 65
## 4729        Oestersund Individual 65
## 4730        Oestersund Individual 65
## 4731        Oestersund Individual 65
## 4732        Oestersund Individual 65
## 4733        Oestersund Individual 65
## 4734        Oestersund Individual 65
## 4735        Oestersund Individual 65
## 4736        Oestersund Individual 65
## 4737        Oestersund Individual 65
## 4738        Oestersund Individual 65
## 4739        Oestersund Individual 65
## 4740        Oestersund Individual 65
## 4741        Oestersund Individual 65
## 4742        Oestersund Individual 65
## 4743        Oestersund Individual 65
## 4744        Oestersund Individual 65
## 4745        Oestersund Individual 65
## 4746        Oestersund Individual 65
## 4747        Oestersund Individual 65
## 4748        Oestersund Individual 65
## 4749        Oestersund Individual 65
## 4750        Oestersund Individual 65
## 4751        Oestersund Individual 65
## 4752        Oestersund Individual 65
## 4753        Oestersund Individual 65
## 4754        Oestersund Individual 65
## 4755        Oestersund Individual 65
## 4756        Oestersund Individual 65
## 4757        Oestersund Individual 65
## 4758        Oestersund Individual 65
## 4759        Oestersund Individual 65
## 4760        Oestersund Individual 65
## 4761        Oestersund Individual 65
## 4762        Oestersund Individual 65
## 4763        Oestersund Individual 65
## 4764        Oestersund Individual 65
## 4765        Oestersund Individual 65
## 4766        Oestersund Individual 65
## 4767        Oestersund Individual 65
## 4768        Oestersund Individual 65
## 4769        Oestersund Individual 65
## 4770        Oestersund Individual 65
## 4771        Oestersund Individual 65
## 4772        Oestersund Individual 65
## 4773        Oestersund Individual 65
## 4774        Oestersund Individual 65
## 4775        Oestersund Individual 65
## 4776        Oestersund Individual 65
## 4777        Oestersund Individual 65
## 4778        Oestersund Individual 65
## 4779        Oestersund Individual 65
## 4780        Oestersund Individual 65
## 4781        Oestersund Individual 65
## 4782        Oestersund Individual 65
## 4783        Oestersund Individual 65
## 4784        Oestersund Individual 65
## 4785        Oestersund Individual 65
## 4786        Oestersund Individual 65
## 4787        Oestersund Individual 65
## 4788        Oestersund Individual 65
## 4789        Oestersund Individual 65
## 4790        Oestersund Individual 65
## 4791        Oestersund Individual 65
## 4792        Oestersund Individual 65
## 4793        Oestersund Individual 65
## 4794        Oestersund Individual 65
## 4795        Oestersund Individual 65
## 4796        Oestersund Individual 65
## 4797        Oestersund Individual 65
## 4798        Oestersund Individual 65
## 4799        Oestersund Individual 65
## 4800        Oestersund Individual 65
## 4801        Oestersund Individual 65
## 4802        Oestersund Individual 65
## 4803        Oestersund Individual 65
## 4804        Oestersund Individual 65
## 4805        Oestersund Individual 65
## 4806        Oestersund Individual 65
## 4807        Oestersund Individual 65
## 4808        Oestersund Individual 65
## 4809        Oestersund Individual 65
## 4810        Oestersund Individual 65
## 4811        Oestersund Individual 65
## 4812        Oestersund    Pursuit 66
## 4813        Oestersund    Pursuit 66
## 4814        Oestersund    Pursuit 66
## 4815        Oestersund    Pursuit 66
## 4816        Oestersund    Pursuit 66
## 4817        Oestersund    Pursuit 66
## 4818        Oestersund    Pursuit 66
## 4819        Oestersund    Pursuit 66
## 4820        Oestersund    Pursuit 66
## 4821        Oestersund    Pursuit 66
## 4822        Oestersund    Pursuit 66
## 4823        Oestersund    Pursuit 66
## 4824        Oestersund    Pursuit 66
## 4825        Oestersund    Pursuit 66
## 4826        Oestersund    Pursuit 66
## 4827        Oestersund    Pursuit 66
## 4828        Oestersund    Pursuit 66
## 4829        Oestersund    Pursuit 66
## 4830        Oestersund    Pursuit 66
## 4831        Oestersund    Pursuit 66
## 4832        Oestersund    Pursuit 66
## 4833        Oestersund    Pursuit 66
## 4834        Oestersund    Pursuit 66
## 4835        Oestersund    Pursuit 66
## 4836        Oestersund    Pursuit 66
## 4837        Oestersund    Pursuit 66
## 4838        Oestersund    Pursuit 66
## 4839        Oestersund    Pursuit 66
## 4840        Oestersund    Pursuit 66
## 4841        Oestersund    Pursuit 66
## 4842        Oestersund    Pursuit 66
## 4843        Oestersund    Pursuit 66
## 4844        Oestersund    Pursuit 66
## 4845        Oestersund    Pursuit 66
## 4846        Oestersund    Pursuit 66
## 4847        Oestersund    Pursuit 66
## 4848        Oestersund    Pursuit 66
## 4849        Oestersund    Pursuit 66
## 4850        Oestersund    Pursuit 66
## 4851        Oestersund    Pursuit 66
## 4852        Oestersund    Pursuit 66
## 4853        Oestersund    Pursuit 66
## 4854        Oestersund    Pursuit 66
## 4855        Oestersund    Pursuit 66
## 4856        Oestersund    Pursuit 66
## 4857        Oestersund    Pursuit 66
## 4858        Oestersund    Pursuit 66
## 4859        Oestersund    Pursuit 66
## 4860        Oestersund    Pursuit 66
## 4861        Oestersund    Pursuit 66
## 4862        Oestersund    Pursuit 66
## 4863        Oestersund    Pursuit 66
## 4864        Oestersund    Pursuit 66
## 4865        Oestersund    Pursuit 66
## 4866        Oestersund    Pursuit 66
## 4867        Oestersund    Pursuit 66
## 4868        Oestersund    Pursuit 66
## 4869        Oestersund    Pursuit 66
## 4870        Oestersund    Pursuit 66
## 4871 Oslo_Holmenkollen     Sprint 70
## 4872 Oslo_Holmenkollen     Sprint 70
## 4873 Oslo_Holmenkollen     Sprint 70
## 4874 Oslo_Holmenkollen     Sprint 70
## 4875 Oslo_Holmenkollen     Sprint 70
## 4876 Oslo_Holmenkollen     Sprint 70
## 4877 Oslo_Holmenkollen     Sprint 70
## 4878 Oslo_Holmenkollen     Sprint 70
## 4879 Oslo_Holmenkollen     Sprint 70
## 4880 Oslo_Holmenkollen     Sprint 70
## 4881 Oslo_Holmenkollen     Sprint 70
## 4882 Oslo_Holmenkollen     Sprint 70
## 4883 Oslo_Holmenkollen     Sprint 70
## 4884 Oslo_Holmenkollen     Sprint 70
## 4885 Oslo_Holmenkollen     Sprint 70
## 4886 Oslo_Holmenkollen     Sprint 70
## 4887 Oslo_Holmenkollen     Sprint 70
## 4888 Oslo_Holmenkollen     Sprint 70
## 4889 Oslo_Holmenkollen     Sprint 70
## 4890 Oslo_Holmenkollen     Sprint 70
## 4891 Oslo_Holmenkollen     Sprint 70
## 4892 Oslo_Holmenkollen     Sprint 70
## 4893 Oslo_Holmenkollen     Sprint 70
## 4894 Oslo_Holmenkollen     Sprint 70
## 4895 Oslo_Holmenkollen     Sprint 70
## 4896 Oslo_Holmenkollen     Sprint 70
## 4897 Oslo_Holmenkollen     Sprint 70
## 4898 Oslo_Holmenkollen     Sprint 70
## 4899 Oslo_Holmenkollen     Sprint 70
## 4900 Oslo_Holmenkollen     Sprint 70
## 4901 Oslo_Holmenkollen     Sprint 70
## 4902 Oslo_Holmenkollen     Sprint 70
## 4903 Oslo_Holmenkollen     Sprint 70
## 4904 Oslo_Holmenkollen     Sprint 70
## 4905 Oslo_Holmenkollen     Sprint 70
## 4906 Oslo_Holmenkollen     Sprint 70
## 4907 Oslo_Holmenkollen     Sprint 70
## 4908 Oslo_Holmenkollen     Sprint 70
## 4909 Oslo_Holmenkollen     Sprint 70
## 4910 Oslo_Holmenkollen     Sprint 70
## 4911 Oslo_Holmenkollen     Sprint 70
## 4912 Oslo_Holmenkollen     Sprint 70
## 4913 Oslo_Holmenkollen     Sprint 70
## 4914 Oslo_Holmenkollen     Sprint 70
## 4915 Oslo_Holmenkollen     Sprint 70
## 4916 Oslo_Holmenkollen     Sprint 70
## 4917 Oslo_Holmenkollen     Sprint 70
## 4918 Oslo_Holmenkollen     Sprint 70
## 4919 Oslo_Holmenkollen     Sprint 70
## 4920 Oslo_Holmenkollen     Sprint 70
## 4921 Oslo_Holmenkollen     Sprint 70
## 4922 Oslo_Holmenkollen     Sprint 70
## 4923 Oslo_Holmenkollen     Sprint 70
## 4924 Oslo_Holmenkollen     Sprint 70
## 4925 Oslo_Holmenkollen     Sprint 70
## 4926 Oslo_Holmenkollen     Sprint 70
## 4927 Oslo_Holmenkollen     Sprint 70
## 4928 Oslo_Holmenkollen     Sprint 70
## 4929 Oslo_Holmenkollen     Sprint 70
## 4930 Oslo_Holmenkollen     Sprint 70
## 4931 Oslo_Holmenkollen     Sprint 70
## 4932 Oslo_Holmenkollen     Sprint 70
## 4933 Oslo_Holmenkollen     Sprint 70
## 4934 Oslo_Holmenkollen     Sprint 70
## 4935 Oslo_Holmenkollen     Sprint 70
## 4936 Oslo_Holmenkollen     Sprint 70
## 4937 Oslo_Holmenkollen     Sprint 70
## 4938 Oslo_Holmenkollen     Sprint 70
## 4939 Oslo_Holmenkollen     Sprint 70
## 4940 Oslo_Holmenkollen     Sprint 70
## 4941 Oslo_Holmenkollen     Sprint 70
## 4942 Oslo_Holmenkollen     Sprint 70
## 4943 Oslo_Holmenkollen     Sprint 70
## 4944 Oslo_Holmenkollen     Sprint 70
## 4945 Oslo_Holmenkollen     Sprint 70
## 4946 Oslo_Holmenkollen     Sprint 70
## 4947 Oslo_Holmenkollen     Sprint 70
## 4948 Oslo_Holmenkollen     Sprint 70
## 4949 Oslo_Holmenkollen     Sprint 70
## 4950 Oslo_Holmenkollen     Sprint 70
## 4951 Oslo_Holmenkollen     Sprint 70
## 4952 Oslo_Holmenkollen     Sprint 70
## 4953 Oslo_Holmenkollen     Sprint 70
## 4954 Oslo_Holmenkollen     Sprint 70
## 4955 Oslo_Holmenkollen     Sprint 70
## 4956 Oslo_Holmenkollen     Sprint 70
## 4957 Oslo_Holmenkollen     Sprint 70
## 4958 Oslo_Holmenkollen     Sprint 70
## 4959 Oslo_Holmenkollen     Sprint 70
## 4960 Oslo_Holmenkollen     Sprint 70
## 4961 Oslo_Holmenkollen     Sprint 70
## 4962 Oslo_Holmenkollen     Sprint 70
## 4963 Oslo_Holmenkollen     Sprint 70
## 4964 Oslo_Holmenkollen     Sprint 70
## 4965 Oslo_Holmenkollen     Sprint 70
## 4966 Oslo_Holmenkollen     Sprint 70
## 4967 Oslo_Holmenkollen     Sprint 70
## 4968 Oslo_Holmenkollen     Sprint 70
## 4969 Oslo_Holmenkollen     Sprint 70
## 4970 Oslo_Holmenkollen     Sprint 70
## 4971 Oslo_Holmenkollen     Sprint 70
## 4972 Oslo_Holmenkollen     Sprint 70
## 4973 Oslo_Holmenkollen     Sprint 70
## 4974 Oslo_Holmenkollen     Sprint 70
## 4975 Oslo_Holmenkollen     Sprint 70
## 4976 Oslo_Holmenkollen     Sprint 70
## 4977 Oslo_Holmenkollen     Sprint 70
## 4978 Oslo_Holmenkollen Mass start 68
## 4979 Oslo_Holmenkollen Mass start 68
## 4980 Oslo_Holmenkollen Mass start 68
## 4981 Oslo_Holmenkollen Mass start 68
## 4982 Oslo_Holmenkollen Mass start 68
## 4983 Oslo_Holmenkollen Mass start 68
## 4984 Oslo_Holmenkollen Mass start 68
## 4985 Oslo_Holmenkollen Mass start 68
## 4986 Oslo_Holmenkollen Mass start 68
## 4987 Oslo_Holmenkollen Mass start 68
## 4988 Oslo_Holmenkollen Mass start 68
## 4989 Oslo_Holmenkollen Mass start 68
## 4990 Oslo_Holmenkollen Mass start 68
## 4991 Oslo_Holmenkollen Mass start 68
## 4992 Oslo_Holmenkollen Mass start 68
## 4993 Oslo_Holmenkollen Mass start 68
## 4994 Oslo_Holmenkollen Mass start 68
## 4995 Oslo_Holmenkollen Mass start 68
## 4996 Oslo_Holmenkollen Mass start 68
## 4997 Oslo_Holmenkollen Mass start 68
## 4998 Oslo_Holmenkollen Mass start 68
## 4999 Oslo_Holmenkollen Mass start 68
## 5000 Oslo_Holmenkollen Mass start 68
## 5001 Oslo_Holmenkollen Mass start 68
## 5002 Oslo_Holmenkollen Mass start 68
## 5003 Oslo_Holmenkollen Mass start 68
## 5004 Oslo_Holmenkollen Mass start 68
## 5005 Oslo_Holmenkollen Mass start 68
## 5006 Oslo_Holmenkollen Mass start 68
## 5007 Oslo_Holmenkollen Mass start 68
## 5008 Oslo_Holmenkollen    Pursuit 69
## 5009 Oslo_Holmenkollen    Pursuit 69
## 5010 Oslo_Holmenkollen    Pursuit 69
## 5011 Oslo_Holmenkollen    Pursuit 69
## 5012 Oslo_Holmenkollen    Pursuit 69
## 5013 Oslo_Holmenkollen    Pursuit 69
## 5014 Oslo_Holmenkollen    Pursuit 69
## 5015 Oslo_Holmenkollen    Pursuit 69
## 5016 Oslo_Holmenkollen    Pursuit 69
## 5017 Oslo_Holmenkollen    Pursuit 69
## 5018 Oslo_Holmenkollen    Pursuit 69
## 5019 Oslo_Holmenkollen    Pursuit 69
## 5020 Oslo_Holmenkollen    Pursuit 69
## 5021 Oslo_Holmenkollen    Pursuit 69
## 5022 Oslo_Holmenkollen    Pursuit 69
## 5023 Oslo_Holmenkollen    Pursuit 69
## 5024 Oslo_Holmenkollen    Pursuit 69
## 5025 Oslo_Holmenkollen    Pursuit 69
## 5026 Oslo_Holmenkollen    Pursuit 69
## 5027 Oslo_Holmenkollen    Pursuit 69
## 5028 Oslo_Holmenkollen    Pursuit 69
## 5029 Oslo_Holmenkollen    Pursuit 69
## 5030 Oslo_Holmenkollen    Pursuit 69
## 5031 Oslo_Holmenkollen    Pursuit 69
## 5032 Oslo_Holmenkollen    Pursuit 69
## 5033 Oslo_Holmenkollen    Pursuit 69
## 5034 Oslo_Holmenkollen    Pursuit 69
## 5035 Oslo_Holmenkollen    Pursuit 69
## 5036 Oslo_Holmenkollen    Pursuit 69
## 5037 Oslo_Holmenkollen    Pursuit 69
## 5038 Oslo_Holmenkollen    Pursuit 69
## 5039 Oslo_Holmenkollen    Pursuit 69
## 5040 Oslo_Holmenkollen    Pursuit 69
## 5041 Oslo_Holmenkollen    Pursuit 69
## 5042 Oslo_Holmenkollen    Pursuit 69
## 5043 Oslo_Holmenkollen    Pursuit 69
## 5044 Oslo_Holmenkollen    Pursuit 69
## 5045 Oslo_Holmenkollen    Pursuit 69
## 5046 Oslo_Holmenkollen    Pursuit 69
## 5047 Oslo_Holmenkollen    Pursuit 69
## 5048 Oslo_Holmenkollen    Pursuit 69
## 5049 Oslo_Holmenkollen    Pursuit 69
## 5050 Oslo_Holmenkollen    Pursuit 69
## 5051 Oslo_Holmenkollen    Pursuit 69
## 5052 Oslo_Holmenkollen    Pursuit 69
## 5053 Oslo_Holmenkollen    Pursuit 69
## 5054 Oslo_Holmenkollen    Pursuit 69
## 5055 Oslo_Holmenkollen    Pursuit 69
## 5056 Oslo_Holmenkollen    Pursuit 69
## 5057 Oslo_Holmenkollen    Pursuit 69
## 5058 Oslo_Holmenkollen    Pursuit 69
## 5059 Oslo_Holmenkollen    Pursuit 69
## 5060 Oslo_Holmenkollen    Pursuit 69
## 5061 Oslo_Holmenkollen    Pursuit 69
## 5062 Oslo_Holmenkollen    Pursuit 69
## 5063 Oslo_Holmenkollen    Pursuit 69
## 5064          Pokljuka     Sprint 72
## 5065          Pokljuka     Sprint 72
## 5066          Pokljuka     Sprint 72
## 5067          Pokljuka     Sprint 72
## 5068          Pokljuka     Sprint 72
## 5069          Pokljuka     Sprint 72
## 5070          Pokljuka     Sprint 72
## 5071          Pokljuka     Sprint 72
## 5072          Pokljuka     Sprint 72
## 5073          Pokljuka     Sprint 72
## 5074          Pokljuka     Sprint 72
## 5075          Pokljuka     Sprint 72
## 5076          Pokljuka     Sprint 72
## 5077          Pokljuka     Sprint 72
## 5078          Pokljuka     Sprint 72
## 5079          Pokljuka     Sprint 72
## 5080          Pokljuka     Sprint 72
## 5081          Pokljuka     Sprint 72
## 5082          Pokljuka     Sprint 72
## 5083          Pokljuka     Sprint 72
## 5084          Pokljuka     Sprint 72
## 5085          Pokljuka     Sprint 72
## 5086          Pokljuka     Sprint 72
## 5087          Pokljuka     Sprint 72
## 5088          Pokljuka     Sprint 72
## 5089          Pokljuka     Sprint 72
## 5090          Pokljuka     Sprint 72
## 5091          Pokljuka     Sprint 72
## 5092          Pokljuka     Sprint 72
## 5093          Pokljuka     Sprint 72
## 5094          Pokljuka     Sprint 72
## 5095          Pokljuka     Sprint 72
## 5096          Pokljuka     Sprint 72
## 5097          Pokljuka     Sprint 72
## 5098          Pokljuka     Sprint 72
## 5099          Pokljuka     Sprint 72
## 5100          Pokljuka     Sprint 72
## 5101          Pokljuka     Sprint 72
## 5102          Pokljuka     Sprint 72
## 5103          Pokljuka     Sprint 72
## 5104          Pokljuka     Sprint 72
## 5105          Pokljuka     Sprint 72
## 5106          Pokljuka     Sprint 72
## 5107          Pokljuka     Sprint 72
## 5108          Pokljuka     Sprint 72
## 5109          Pokljuka     Sprint 72
## 5110          Pokljuka     Sprint 72
## 5111          Pokljuka     Sprint 72
## 5112          Pokljuka     Sprint 72
## 5113          Pokljuka     Sprint 72
## 5114          Pokljuka     Sprint 72
## 5115          Pokljuka     Sprint 72
## 5116          Pokljuka     Sprint 72
## 5117          Pokljuka     Sprint 72
## 5118          Pokljuka     Sprint 72
## 5119          Pokljuka     Sprint 72
## 5120          Pokljuka     Sprint 72
## 5121          Pokljuka     Sprint 72
## 5122          Pokljuka     Sprint 72
## 5123          Pokljuka     Sprint 72
## 5124          Pokljuka     Sprint 72
## 5125          Pokljuka     Sprint 72
## 5126          Pokljuka     Sprint 72
## 5127          Pokljuka     Sprint 72
## 5128          Pokljuka     Sprint 72
## 5129          Pokljuka     Sprint 72
## 5130          Pokljuka     Sprint 72
## 5131          Pokljuka     Sprint 72
## 5132          Pokljuka     Sprint 72
## 5133          Pokljuka     Sprint 72
## 5134          Pokljuka     Sprint 72
## 5135          Pokljuka     Sprint 72
## 5136          Pokljuka     Sprint 72
## 5137          Pokljuka     Sprint 72
## 5138          Pokljuka     Sprint 72
## 5139          Pokljuka     Sprint 72
## 5140          Pokljuka     Sprint 72
## 5141          Pokljuka     Sprint 72
## 5142          Pokljuka     Sprint 72
## 5143          Pokljuka     Sprint 72
## 5144          Pokljuka     Sprint 72
## 5145          Pokljuka     Sprint 72
## 5146          Pokljuka     Sprint 72
## 5147          Pokljuka     Sprint 72
## 5148          Pokljuka     Sprint 72
## 5149          Pokljuka     Sprint 72
## 5150          Pokljuka     Sprint 72
## 5151          Pokljuka     Sprint 72
## 5152          Pokljuka     Sprint 72
## 5153          Pokljuka     Sprint 72
## 5154          Pokljuka     Sprint 72
## 5155          Pokljuka     Sprint 72
## 5156          Pokljuka     Sprint 72
## 5157          Pokljuka     Sprint 72
## 5158          Pokljuka     Sprint 72
## 5159          Pokljuka     Sprint 72
## 5160          Pokljuka     Sprint 72
## 5161          Pokljuka     Sprint 72
## 5162          Pokljuka     Sprint 72
## 5163          Pokljuka     Sprint 72
## 5164          Pokljuka     Sprint 72
## 5165          Pokljuka     Sprint 72
## 5166          Pokljuka     Sprint 72
## 5167          Pokljuka     Sprint 72
## 5168          Pokljuka    Pursuit 71
## 5169          Pokljuka    Pursuit 71
## 5170          Pokljuka    Pursuit 71
## 5171          Pokljuka    Pursuit 71
## 5172          Pokljuka    Pursuit 71
## 5173          Pokljuka    Pursuit 71
## 5174          Pokljuka    Pursuit 71
## 5175          Pokljuka    Pursuit 71
## 5176          Pokljuka    Pursuit 71
## 5177          Pokljuka    Pursuit 71
## 5178          Pokljuka    Pursuit 71
## 5179          Pokljuka    Pursuit 71
## 5180          Pokljuka    Pursuit 71
## 5181          Pokljuka    Pursuit 71
## 5182          Pokljuka    Pursuit 71
## 5183          Pokljuka    Pursuit 71
## 5184          Pokljuka    Pursuit 71
## 5185          Pokljuka    Pursuit 71
## 5186          Pokljuka    Pursuit 71
## 5187          Pokljuka    Pursuit 71
## 5188          Pokljuka    Pursuit 71
## 5189          Pokljuka    Pursuit 71
## 5190          Pokljuka    Pursuit 71
## 5191          Pokljuka    Pursuit 71
## 5192          Pokljuka    Pursuit 71
## 5193          Pokljuka    Pursuit 71
## 5194          Pokljuka    Pursuit 71
## 5195          Pokljuka    Pursuit 71
## 5196          Pokljuka    Pursuit 71
## 5197          Pokljuka    Pursuit 71
## 5198          Pokljuka    Pursuit 71
## 5199          Pokljuka    Pursuit 71
## 5200          Pokljuka    Pursuit 71
## 5201          Pokljuka    Pursuit 71
## 5202          Pokljuka    Pursuit 71
## 5203          Pokljuka    Pursuit 71
## 5204          Pokljuka    Pursuit 71
## 5205          Pokljuka    Pursuit 71
## 5206          Pokljuka    Pursuit 71
## 5207          Pokljuka    Pursuit 71
## 5208          Pokljuka    Pursuit 71
## 5209          Pokljuka    Pursuit 71
## 5210          Pokljuka    Pursuit 71
## 5211          Pokljuka    Pursuit 71
## 5212          Pokljuka    Pursuit 71
## 5213          Pokljuka    Pursuit 71
## 5214          Pokljuka    Pursuit 71
## 5215          Pokljuka    Pursuit 71
## 5216          Pokljuka    Pursuit 71
## 5217          Pokljuka    Pursuit 71
## 5218          Pokljuka    Pursuit 71
## 5219          Pokljuka    Pursuit 71
## 5220          Pokljuka    Pursuit 71
## 5221          Pokljuka    Pursuit 71
## 5222          Pokljuka    Pursuit 71
## 5223          Pokljuka    Pursuit 71
## 5224          Pokljuka    Pursuit 71
## 5225          Pokljuka    Pursuit 71
## 5226       PyeongChang     Sprint 74
## 5227       PyeongChang     Sprint 74
## 5228       PyeongChang     Sprint 74
## 5229       PyeongChang     Sprint 74
## 5230       PyeongChang     Sprint 74
## 5231       PyeongChang     Sprint 74
## 5232       PyeongChang     Sprint 74
## 5233       PyeongChang     Sprint 74
## 5234       PyeongChang     Sprint 74
## 5235       PyeongChang     Sprint 74
## 5236       PyeongChang     Sprint 74
## 5237       PyeongChang     Sprint 74
## 5238       PyeongChang     Sprint 74
## 5239       PyeongChang     Sprint 74
## 5240       PyeongChang     Sprint 74
## 5241       PyeongChang     Sprint 74
## 5242       PyeongChang     Sprint 74
## 5243       PyeongChang     Sprint 74
## 5244       PyeongChang     Sprint 74
## 5245       PyeongChang     Sprint 74
## 5246       PyeongChang     Sprint 74
## 5247       PyeongChang     Sprint 74
## 5248       PyeongChang     Sprint 74
## 5249       PyeongChang     Sprint 74
## 5250       PyeongChang     Sprint 74
## 5251       PyeongChang     Sprint 74
## 5252       PyeongChang     Sprint 74
## 5253       PyeongChang     Sprint 74
## 5254       PyeongChang     Sprint 74
## 5255       PyeongChang     Sprint 74
## 5256       PyeongChang     Sprint 74
## 5257       PyeongChang     Sprint 74
## 5258       PyeongChang     Sprint 74
## 5259       PyeongChang     Sprint 74
## 5260       PyeongChang     Sprint 74
## 5261       PyeongChang     Sprint 74
## 5262       PyeongChang     Sprint 74
## 5263       PyeongChang     Sprint 74
## 5264       PyeongChang     Sprint 74
## 5265       PyeongChang     Sprint 74
## 5266       PyeongChang     Sprint 74
## 5267       PyeongChang     Sprint 74
## 5268       PyeongChang     Sprint 74
## 5269       PyeongChang     Sprint 74
## 5270       PyeongChang     Sprint 74
## 5271       PyeongChang     Sprint 74
## 5272       PyeongChang     Sprint 74
## 5273       PyeongChang     Sprint 74
## 5274       PyeongChang     Sprint 74
## 5275       PyeongChang     Sprint 74
## 5276       PyeongChang     Sprint 74
## 5277       PyeongChang     Sprint 74
## 5278       PyeongChang     Sprint 74
## 5279       PyeongChang     Sprint 74
## 5280       PyeongChang     Sprint 74
## 5281       PyeongChang     Sprint 74
## 5282       PyeongChang     Sprint 74
## 5283       PyeongChang     Sprint 74
## 5284       PyeongChang     Sprint 74
## 5285       PyeongChang     Sprint 74
## 5286       PyeongChang     Sprint 74
## 5287       PyeongChang     Sprint 74
## 5288       PyeongChang     Sprint 74
## 5289       PyeongChang     Sprint 74
## 5290       PyeongChang     Sprint 74
## 5291       PyeongChang     Sprint 74
## 5292       PyeongChang     Sprint 74
## 5293       PyeongChang     Sprint 74
## 5294       PyeongChang     Sprint 74
## 5295       PyeongChang     Sprint 74
## 5296       PyeongChang     Sprint 74
## 5297       PyeongChang     Sprint 74
## 5298       PyeongChang     Sprint 74
## 5299       PyeongChang     Sprint 74
## 5300       PyeongChang     Sprint 74
## 5301       PyeongChang     Sprint 74
## 5302       PyeongChang     Sprint 74
## 5303       PyeongChang     Sprint 74
## 5304       PyeongChang     Sprint 74
## 5305       PyeongChang     Sprint 74
## 5306       PyeongChang     Sprint 74
## 5307       PyeongChang     Sprint 74
## 5308       PyeongChang     Sprint 74
## 5309       PyeongChang     Sprint 74
## 5310       PyeongChang     Sprint 74
## 5311       PyeongChang     Sprint 74
## 5312       PyeongChang     Sprint 74
## 5313       PyeongChang     Sprint 74
## 5314       PyeongChang     Sprint 74
## 5315       PyeongChang     Sprint 74
## 5316       PyeongChang     Sprint 74
## 5317       PyeongChang     Sprint 74
## 5318       PyeongChang     Sprint 74
## 5319       PyeongChang     Sprint 74
## 5320       PyeongChang     Sprint 74
## 5321       PyeongChang     Sprint 74
## 5322       PyeongChang     Sprint 74
## 5323       PyeongChang     Sprint 74
## 5324       PyeongChang     Sprint 74
## 5325       PyeongChang     Sprint 74
## 5326       PyeongChang     Sprint 74
## 5327       PyeongChang     Sprint 74
## 5328       PyeongChang    Pursuit 73
## 5329       PyeongChang    Pursuit 73
## 5330       PyeongChang    Pursuit 73
## 5331       PyeongChang    Pursuit 73
## 5332       PyeongChang    Pursuit 73
## 5333       PyeongChang    Pursuit 73
## 5334       PyeongChang    Pursuit 73
## 5335       PyeongChang    Pursuit 73
## 5336       PyeongChang    Pursuit 73
## 5337       PyeongChang    Pursuit 73
## 5338       PyeongChang    Pursuit 73
## 5339       PyeongChang    Pursuit 73
## 5340       PyeongChang    Pursuit 73
## 5341       PyeongChang    Pursuit 73
## 5342       PyeongChang    Pursuit 73
## 5343       PyeongChang    Pursuit 73
## 5344       PyeongChang    Pursuit 73
## 5345       PyeongChang    Pursuit 73
## 5346       PyeongChang    Pursuit 73
## 5347       PyeongChang    Pursuit 73
## 5348       PyeongChang    Pursuit 73
## 5349       PyeongChang    Pursuit 73
## 5350       PyeongChang    Pursuit 73
## 5351       PyeongChang    Pursuit 73
## 5352       PyeongChang    Pursuit 73
## 5353       PyeongChang    Pursuit 73
## 5354       PyeongChang    Pursuit 73
## 5355       PyeongChang    Pursuit 73
## 5356       PyeongChang    Pursuit 73
## 5357       PyeongChang    Pursuit 73
## 5358       PyeongChang    Pursuit 73
## 5359       PyeongChang    Pursuit 73
## 5360       PyeongChang    Pursuit 73
## 5361       PyeongChang    Pursuit 73
## 5362       PyeongChang    Pursuit 73
## 5363       PyeongChang    Pursuit 73
## 5364       PyeongChang    Pursuit 73
## 5365       PyeongChang    Pursuit 73
## 5366       PyeongChang    Pursuit 73
## 5367       PyeongChang    Pursuit 73
## 5368       PyeongChang    Pursuit 73
## 5369       PyeongChang    Pursuit 73
## 5370       PyeongChang    Pursuit 73
## 5371       PyeongChang    Pursuit 73
## 5372       PyeongChang    Pursuit 73
## 5373       PyeongChang    Pursuit 73
## 5374       PyeongChang    Pursuit 73
## 5375       PyeongChang    Pursuit 73
## 5376       PyeongChang    Pursuit 73
## 5377       PyeongChang    Pursuit 73
## 5378       PyeongChang    Pursuit 73
## 5379       PyeongChang    Pursuit 73
## 5380       PyeongChang    Pursuit 73
## 5381       PyeongChang    Pursuit 73
## 5382       PyeongChang    Pursuit 73
## 5383       PyeongChang    Pursuit 73
## 5384       PyeongChang    Pursuit 73
## 5385       PyeongChang    Pursuit 73
## 5386        Ruhpolding     Sprint 76
## 5387        Ruhpolding     Sprint 76
## 5388        Ruhpolding     Sprint 76
## 5389        Ruhpolding     Sprint 76
## 5390        Ruhpolding     Sprint 76
## 5391        Ruhpolding     Sprint 76
## 5392        Ruhpolding     Sprint 76
## 5393        Ruhpolding     Sprint 76
## 5394        Ruhpolding     Sprint 76
## 5395        Ruhpolding     Sprint 76
## 5396        Ruhpolding     Sprint 76
## 5397        Ruhpolding     Sprint 76
## 5398        Ruhpolding     Sprint 76
## 5399        Ruhpolding     Sprint 76
## 5400        Ruhpolding     Sprint 76
## 5401        Ruhpolding     Sprint 76
## 5402        Ruhpolding     Sprint 76
## 5403        Ruhpolding     Sprint 76
## 5404        Ruhpolding     Sprint 76
## 5405        Ruhpolding     Sprint 76
## 5406        Ruhpolding     Sprint 76
## 5407        Ruhpolding     Sprint 76
## 5408        Ruhpolding     Sprint 76
## 5409        Ruhpolding     Sprint 76
## 5410        Ruhpolding     Sprint 76
## 5411        Ruhpolding     Sprint 76
## 5412        Ruhpolding     Sprint 76
## 5413        Ruhpolding     Sprint 76
## 5414        Ruhpolding     Sprint 76
## 5415        Ruhpolding     Sprint 76
## 5416        Ruhpolding     Sprint 76
## 5417        Ruhpolding     Sprint 76
## 5418        Ruhpolding     Sprint 76
## 5419        Ruhpolding     Sprint 76
## 5420        Ruhpolding     Sprint 76
## 5421        Ruhpolding     Sprint 76
## 5422        Ruhpolding     Sprint 76
## 5423        Ruhpolding     Sprint 76
## 5424        Ruhpolding     Sprint 76
## 5425        Ruhpolding     Sprint 76
## 5426        Ruhpolding     Sprint 76
## 5427        Ruhpolding     Sprint 76
## 5428        Ruhpolding     Sprint 76
## 5429        Ruhpolding     Sprint 76
## 5430        Ruhpolding     Sprint 76
## 5431        Ruhpolding     Sprint 76
## 5432        Ruhpolding     Sprint 76
## 5433        Ruhpolding     Sprint 76
## 5434        Ruhpolding     Sprint 76
## 5435        Ruhpolding     Sprint 76
## 5436        Ruhpolding     Sprint 76
## 5437        Ruhpolding     Sprint 76
## 5438        Ruhpolding     Sprint 76
## 5439        Ruhpolding     Sprint 76
## 5440        Ruhpolding     Sprint 76
## 5441        Ruhpolding     Sprint 76
## 5442        Ruhpolding     Sprint 76
## 5443        Ruhpolding     Sprint 76
## 5444        Ruhpolding     Sprint 76
## 5445        Ruhpolding     Sprint 76
## 5446        Ruhpolding     Sprint 76
## 5447        Ruhpolding     Sprint 76
## 5448        Ruhpolding     Sprint 76
## 5449        Ruhpolding     Sprint 76
## 5450        Ruhpolding     Sprint 76
## 5451        Ruhpolding     Sprint 76
## 5452        Ruhpolding     Sprint 76
## 5453        Ruhpolding     Sprint 76
## 5454        Ruhpolding     Sprint 76
## 5455        Ruhpolding     Sprint 76
## 5456        Ruhpolding     Sprint 76
## 5457        Ruhpolding     Sprint 76
## 5458        Ruhpolding     Sprint 76
## 5459        Ruhpolding     Sprint 76
## 5460        Ruhpolding     Sprint 76
## 5461        Ruhpolding     Sprint 76
## 5462        Ruhpolding     Sprint 76
## 5463        Ruhpolding     Sprint 76
## 5464        Ruhpolding     Sprint 76
## 5465        Ruhpolding     Sprint 76
## 5466        Ruhpolding     Sprint 76
## 5467        Ruhpolding     Sprint 76
## 5468        Ruhpolding     Sprint 76
## 5469        Ruhpolding     Sprint 76
## 5470        Ruhpolding     Sprint 76
## 5471        Ruhpolding     Sprint 76
## 5472        Ruhpolding     Sprint 76
## 5473        Ruhpolding     Sprint 76
## 5474        Ruhpolding     Sprint 76
## 5475        Ruhpolding     Sprint 76
## 5476        Ruhpolding     Sprint 76
## 5477        Ruhpolding     Sprint 76
## 5478        Ruhpolding     Sprint 76
## 5479        Ruhpolding     Sprint 76
## 5480        Ruhpolding     Sprint 76
## 5481        Ruhpolding     Sprint 76
## 5482        Ruhpolding     Sprint 76
## 5483        Ruhpolding     Sprint 76
## 5484        Ruhpolding     Sprint 76
## 5485        Ruhpolding     Sprint 76
## 5486        Ruhpolding     Sprint 76
## 5487        Ruhpolding     Sprint 76
## 5488        Ruhpolding     Sprint 76
## 5489        Ruhpolding     Sprint 76
## 5490        Ruhpolding     Sprint 76
## 5491        Ruhpolding     Sprint 76
## 5492        Ruhpolding     Sprint 76
## 5493        Ruhpolding    Pursuit 75
## 5494        Ruhpolding    Pursuit 75
## 5495        Ruhpolding    Pursuit 75
## 5496        Ruhpolding    Pursuit 75
## 5497        Ruhpolding    Pursuit 75
## 5498        Ruhpolding    Pursuit 75
## 5499        Ruhpolding    Pursuit 75
## 5500        Ruhpolding    Pursuit 75
## 5501        Ruhpolding    Pursuit 75
## 5502        Ruhpolding    Pursuit 75
## 5503        Ruhpolding    Pursuit 75
## 5504        Ruhpolding    Pursuit 75
## 5505        Ruhpolding    Pursuit 75
## 5506        Ruhpolding    Pursuit 75
## 5507        Ruhpolding    Pursuit 75
## 5508        Ruhpolding    Pursuit 75
## 5509        Ruhpolding    Pursuit 75
## 5510        Ruhpolding    Pursuit 75
## 5511        Ruhpolding    Pursuit 75
## 5512        Ruhpolding    Pursuit 75
## 5513        Ruhpolding    Pursuit 75
## 5514        Ruhpolding    Pursuit 75
## 5515        Ruhpolding    Pursuit 75
## 5516        Ruhpolding    Pursuit 75
## 5517        Ruhpolding    Pursuit 75
## 5518        Ruhpolding    Pursuit 75
## 5519        Ruhpolding    Pursuit 75
## 5520        Ruhpolding    Pursuit 75
## 5521        Ruhpolding    Pursuit 75
## 5522        Ruhpolding    Pursuit 75
## 5523        Ruhpolding    Pursuit 75
## 5524        Ruhpolding    Pursuit 75
## 5525        Ruhpolding    Pursuit 75
## 5526        Ruhpolding    Pursuit 75
## 5527        Ruhpolding    Pursuit 75
## 5528        Ruhpolding    Pursuit 75
## 5529        Ruhpolding    Pursuit 75
## 5530        Ruhpolding    Pursuit 75
## 5531        Ruhpolding    Pursuit 75
## 5532        Ruhpolding    Pursuit 75
## 5533        Ruhpolding    Pursuit 75
## 5534        Ruhpolding    Pursuit 75
## 5535        Ruhpolding    Pursuit 75
## 5536        Ruhpolding    Pursuit 75
## 5537        Ruhpolding    Pursuit 75
## 5538        Ruhpolding    Pursuit 75
## 5539        Ruhpolding    Pursuit 75
## 5540        Ruhpolding    Pursuit 75
## 5541        Ruhpolding    Pursuit 75
## 5542        Ruhpolding    Pursuit 75
## 5543        Ruhpolding    Pursuit 75
## 5544        Ruhpolding    Pursuit 75
## 5545        Ruhpolding    Pursuit 75
## 5546        Ruhpolding    Pursuit 75
## 5547        Ruhpolding    Pursuit 75
## 5548            Annecy     Sprint 79
## 5549            Annecy     Sprint 79
## 5550            Annecy     Sprint 79
## 5551            Annecy     Sprint 79
## 5552            Annecy     Sprint 79
## 5553            Annecy     Sprint 79
## 5554            Annecy     Sprint 79
## 5555            Annecy     Sprint 79
## 5556            Annecy     Sprint 79
## 5557            Annecy     Sprint 79
## 5558            Annecy     Sprint 79
## 5559            Annecy     Sprint 79
## 5560            Annecy     Sprint 79
## 5561            Annecy     Sprint 79
## 5562            Annecy     Sprint 79
## 5563            Annecy     Sprint 79
## 5564            Annecy     Sprint 79
## 5565            Annecy     Sprint 79
## 5566            Annecy     Sprint 79
## 5567            Annecy     Sprint 79
## 5568            Annecy     Sprint 79
## 5569            Annecy     Sprint 79
## 5570            Annecy     Sprint 79
## 5571            Annecy     Sprint 79
## 5572            Annecy     Sprint 79
## 5573            Annecy     Sprint 79
## 5574            Annecy     Sprint 79
## 5575            Annecy     Sprint 79
## 5576            Annecy     Sprint 79
## 5577            Annecy     Sprint 79
## 5578            Annecy     Sprint 79
## 5579            Annecy     Sprint 79
## 5580            Annecy     Sprint 79
## 5581            Annecy     Sprint 79
## 5582            Annecy     Sprint 79
## 5583            Annecy     Sprint 79
## 5584            Annecy     Sprint 79
## 5585            Annecy     Sprint 79
## 5586            Annecy     Sprint 79
## 5587            Annecy     Sprint 79
## 5588            Annecy     Sprint 79
## 5589            Annecy     Sprint 79
## 5590            Annecy     Sprint 79
## 5591            Annecy     Sprint 79
## 5592            Annecy     Sprint 79
## 5593            Annecy     Sprint 79
## 5594            Annecy     Sprint 79
## 5595            Annecy     Sprint 79
## 5596            Annecy     Sprint 79
## 5597            Annecy     Sprint 79
## 5598            Annecy     Sprint 79
## 5599            Annecy     Sprint 79
## 5600            Annecy     Sprint 79
## 5601            Annecy     Sprint 79
## 5602            Annecy     Sprint 79
## 5603            Annecy     Sprint 79
## 5604            Annecy     Sprint 79
## 5605            Annecy     Sprint 79
## 5606            Annecy     Sprint 79
## 5607            Annecy     Sprint 79
## 5608            Annecy     Sprint 79
## 5609            Annecy     Sprint 79
## 5610            Annecy     Sprint 79
## 5611            Annecy     Sprint 79
## 5612            Annecy     Sprint 79
## 5613            Annecy     Sprint 79
## 5614            Annecy     Sprint 79
## 5615            Annecy     Sprint 79
## 5616            Annecy     Sprint 79
## 5617            Annecy     Sprint 79
## 5618            Annecy     Sprint 79
## 5619            Annecy     Sprint 79
## 5620            Annecy     Sprint 79
## 5621            Annecy     Sprint 79
## 5622            Annecy     Sprint 79
## 5623            Annecy     Sprint 79
## 5624            Annecy     Sprint 79
## 5625            Annecy     Sprint 79
## 5626            Annecy     Sprint 79
## 5627            Annecy     Sprint 79
## 5628            Annecy     Sprint 79
## 5629            Annecy     Sprint 79
## 5630            Annecy     Sprint 79
## 5631            Annecy     Sprint 79
## 5632            Annecy     Sprint 79
## 5633            Annecy     Sprint 79
## 5634            Annecy     Sprint 79
## 5635            Annecy     Sprint 79
## 5636            Annecy     Sprint 79
## 5637            Annecy     Sprint 79
## 5638            Annecy     Sprint 79
## 5639            Annecy     Sprint 79
## 5640            Annecy     Sprint 79
## 5641            Annecy     Sprint 79
## 5642            Annecy     Sprint 79
## 5643            Annecy     Sprint 79
## 5644            Annecy     Sprint 79
## 5645            Annecy     Sprint 79
## 5646            Annecy     Sprint 79
## 5647            Annecy     Sprint 79
## 5648            Annecy     Sprint 79
## 5649            Annecy     Sprint 79
## 5650            Annecy     Sprint 79
## 5651            Annecy Mass start 77
## 5652            Annecy Mass start 77
## 5653            Annecy Mass start 77
## 5654            Annecy Mass start 77
## 5655            Annecy Mass start 77
## 5656            Annecy Mass start 77
## 5657            Annecy Mass start 77
## 5658            Annecy Mass start 77
## 5659            Annecy Mass start 77
## 5660            Annecy Mass start 77
## 5661            Annecy Mass start 77
## 5662            Annecy Mass start 77
## 5663            Annecy Mass start 77
## 5664            Annecy Mass start 77
## 5665            Annecy Mass start 77
## 5666            Annecy Mass start 77
## 5667            Annecy Mass start 77
## 5668            Annecy Mass start 77
## 5669            Annecy Mass start 77
## 5670            Annecy Mass start 77
## 5671            Annecy Mass start 77
## 5672            Annecy Mass start 77
## 5673            Annecy Mass start 77
## 5674            Annecy Mass start 77
## 5675            Annecy Mass start 77
## 5676            Annecy Mass start 77
## 5677            Annecy Mass start 77
## 5678            Annecy Mass start 77
## 5679            Annecy Mass start 77
## 5680            Annecy Mass start 77
## 5681            Annecy    Pursuit 78
## 5682            Annecy    Pursuit 78
## 5683            Annecy    Pursuit 78
## 5684            Annecy    Pursuit 78
## 5685            Annecy    Pursuit 78
## 5686            Annecy    Pursuit 78
## 5687            Annecy    Pursuit 78
## 5688            Annecy    Pursuit 78
## 5689            Annecy    Pursuit 78
## 5690            Annecy    Pursuit 78
## 5691            Annecy    Pursuit 78
## 5692            Annecy    Pursuit 78
## 5693            Annecy    Pursuit 78
## 5694            Annecy    Pursuit 78
## 5695            Annecy    Pursuit 78
## 5696            Annecy    Pursuit 78
## 5697            Annecy    Pursuit 78
## 5698            Annecy    Pursuit 78
## 5699            Annecy    Pursuit 78
## 5700            Annecy    Pursuit 78
## 5701            Annecy    Pursuit 78
## 5702            Annecy    Pursuit 78
## 5703            Annecy    Pursuit 78
## 5704            Annecy    Pursuit 78
## 5705            Annecy    Pursuit 78
## 5706            Annecy    Pursuit 78
## 5707            Annecy    Pursuit 78
## 5708            Annecy    Pursuit 78
## 5709            Annecy    Pursuit 78
## 5710            Annecy    Pursuit 78
## 5711            Annecy    Pursuit 78
## 5712            Annecy    Pursuit 78
## 5713            Annecy    Pursuit 78
## 5714            Annecy    Pursuit 78
## 5715            Annecy    Pursuit 78
## 5716            Annecy    Pursuit 78
## 5717            Annecy    Pursuit 78
## 5718            Annecy    Pursuit 78
## 5719            Annecy    Pursuit 78
## 5720            Annecy    Pursuit 78
## 5721            Annecy    Pursuit 78
## 5722            Annecy    Pursuit 78
## 5723            Annecy    Pursuit 78
## 5724            Annecy    Pursuit 78
## 5725            Annecy    Pursuit 78
## 5726            Annecy    Pursuit 78
## 5727            Annecy    Pursuit 78
## 5728            Annecy    Pursuit 78
## 5729            Annecy    Pursuit 78
## 5730            Annecy    Pursuit 78
## 5731            Annecy    Pursuit 78
## 5732            Annecy    Pursuit 78
## 5733            Annecy    Pursuit 78
## 5734            Annecy    Pursuit 78
## 5735            Annecy    Pursuit 78
## 5736            Annecy    Pursuit 78
## 5737            Annecy    Pursuit 78
## 5738        Anterselva     Sprint 82
## 5739        Anterselva     Sprint 82
## 5740        Anterselva     Sprint 82
## 5741        Anterselva     Sprint 82
## 5742        Anterselva     Sprint 82
## 5743        Anterselva     Sprint 82
## 5744        Anterselva     Sprint 82
## 5745        Anterselva     Sprint 82
## 5746        Anterselva     Sprint 82
## 5747        Anterselva     Sprint 82
## 5748        Anterselva     Sprint 82
## 5749        Anterselva     Sprint 82
## 5750        Anterselva     Sprint 82
## 5751        Anterselva     Sprint 82
## 5752        Anterselva     Sprint 82
## 5753        Anterselva     Sprint 82
## 5754        Anterselva     Sprint 82
## 5755        Anterselva     Sprint 82
## 5756        Anterselva     Sprint 82
## 5757        Anterselva     Sprint 82
## 5758        Anterselva     Sprint 82
## 5759        Anterselva     Sprint 82
## 5760        Anterselva     Sprint 82
## 5761        Anterselva     Sprint 82
## 5762        Anterselva     Sprint 82
## 5763        Anterselva     Sprint 82
## 5764        Anterselva     Sprint 82
## 5765        Anterselva     Sprint 82
## 5766        Anterselva     Sprint 82
## 5767        Anterselva     Sprint 82
## 5768        Anterselva     Sprint 82
## 5769        Anterselva     Sprint 82
## 5770        Anterselva     Sprint 82
## 5771        Anterselva     Sprint 82
## 5772        Anterselva     Sprint 82
## 5773        Anterselva     Sprint 82
## 5774        Anterselva     Sprint 82
## 5775        Anterselva     Sprint 82
## 5776        Anterselva     Sprint 82
## 5777        Anterselva     Sprint 82
## 5778        Anterselva     Sprint 82
## 5779        Anterselva     Sprint 82
## 5780        Anterselva     Sprint 82
## 5781        Anterselva     Sprint 82
## 5782        Anterselva     Sprint 82
## 5783        Anterselva     Sprint 82
## 5784        Anterselva     Sprint 82
## 5785        Anterselva     Sprint 82
## 5786        Anterselva     Sprint 82
## 5787        Anterselva     Sprint 82
## 5788        Anterselva     Sprint 82
## 5789        Anterselva     Sprint 82
## 5790        Anterselva     Sprint 82
## 5791        Anterselva     Sprint 82
## 5792        Anterselva     Sprint 82
## 5793        Anterselva     Sprint 82
## 5794        Anterselva     Sprint 82
## 5795        Anterselva     Sprint 82
## 5796        Anterselva     Sprint 82
## 5797        Anterselva     Sprint 82
## 5798        Anterselva     Sprint 82
## 5799        Anterselva     Sprint 82
## 5800        Anterselva     Sprint 82
## 5801        Anterselva     Sprint 82
## 5802        Anterselva     Sprint 82
## 5803        Anterselva     Sprint 82
## 5804        Anterselva     Sprint 82
## 5805        Anterselva     Sprint 82
## 5806        Anterselva     Sprint 82
## 5807        Anterselva     Sprint 82
## 5808        Anterselva     Sprint 82
## 5809        Anterselva     Sprint 82
## 5810        Anterselva     Sprint 82
## 5811        Anterselva     Sprint 82
## 5812        Anterselva     Sprint 82
## 5813        Anterselva     Sprint 82
## 5814        Anterselva     Sprint 82
## 5815        Anterselva     Sprint 82
## 5816        Anterselva     Sprint 82
## 5817        Anterselva     Sprint 82
## 5818        Anterselva     Sprint 82
## 5819        Anterselva     Sprint 82
## 5820        Anterselva     Sprint 82
## 5821        Anterselva     Sprint 82
## 5822        Anterselva     Sprint 82
## 5823        Anterselva     Sprint 82
## 5824        Anterselva     Sprint 82
## 5825        Anterselva     Sprint 82
## 5826        Anterselva     Sprint 82
## 5827        Anterselva     Sprint 82
## 5828        Anterselva     Sprint 82
## 5829        Anterselva     Sprint 82
## 5830        Anterselva     Sprint 82
## 5831        Anterselva     Sprint 82
## 5832        Anterselva     Sprint 82
## 5833        Anterselva     Sprint 82
## 5834        Anterselva     Sprint 82
## 5835        Anterselva     Sprint 82
## 5836        Anterselva     Sprint 82
## 5837        Anterselva     Sprint 82
## 5838        Anterselva     Sprint 82
## 5839        Anterselva     Sprint 82
## 5840        Anterselva     Sprint 82
## 5841        Anterselva     Sprint 82
## 5842        Anterselva     Sprint 82
## 5843        Anterselva     Sprint 82
## 5844        Anterselva     Sprint 82
## 5845        Anterselva     Sprint 82
## 5846        Anterselva     Sprint 82
## 5847        Anterselva Mass start 80
## 5848        Anterselva Mass start 80
## 5849        Anterselva Mass start 80
## 5850        Anterselva Mass start 80
## 5851        Anterselva Mass start 80
## 5852        Anterselva Mass start 80
## 5853        Anterselva Mass start 80
## 5854        Anterselva Mass start 80
## 5855        Anterselva Mass start 80
## 5856        Anterselva Mass start 80
## 5857        Anterselva Mass start 80
## 5858        Anterselva Mass start 80
## 5859        Anterselva Mass start 80
## 5860        Anterselva Mass start 80
## 5861        Anterselva Mass start 80
## 5862        Anterselva Mass start 80
## 5863        Anterselva Mass start 80
## 5864        Anterselva Mass start 80
## 5865        Anterselva Mass start 80
## 5866        Anterselva Mass start 80
## 5867        Anterselva Mass start 80
## 5868        Anterselva Mass start 80
## 5869        Anterselva Mass start 80
## 5870        Anterselva Mass start 80
## 5871        Anterselva Mass start 80
## 5872        Anterselva Mass start 80
## 5873        Anterselva Mass start 80
## 5874        Anterselva Mass start 80
## 5875        Anterselva Mass start 80
## 5876        Anterselva Mass start 80
## 5877        Anterselva    Pursuit 81
## 5878        Anterselva    Pursuit 81
## 5879        Anterselva    Pursuit 81
## 5880        Anterselva    Pursuit 81
## 5881        Anterselva    Pursuit 81
## 5882        Anterselva    Pursuit 81
## 5883        Anterselva    Pursuit 81
## 5884        Anterselva    Pursuit 81
## 5885        Anterselva    Pursuit 81
## 5886        Anterselva    Pursuit 81
## 5887        Anterselva    Pursuit 81
## 5888        Anterselva    Pursuit 81
## 5889        Anterselva    Pursuit 81
## 5890        Anterselva    Pursuit 81
## 5891        Anterselva    Pursuit 81
## 5892        Anterselva    Pursuit 81
## 5893        Anterselva    Pursuit 81
## 5894        Anterselva    Pursuit 81
## 5895        Anterselva    Pursuit 81
## 5896        Anterselva    Pursuit 81
## 5897        Anterselva    Pursuit 81
## 5898        Anterselva    Pursuit 81
## 5899        Anterselva    Pursuit 81
## 5900        Anterselva    Pursuit 81
## 5901        Anterselva    Pursuit 81
## 5902        Anterselva    Pursuit 81
## 5903        Anterselva    Pursuit 81
## 5904        Anterselva    Pursuit 81
## 5905        Anterselva    Pursuit 81
## 5906        Anterselva    Pursuit 81
## 5907        Anterselva    Pursuit 81
## 5908        Anterselva    Pursuit 81
## 5909        Anterselva    Pursuit 81
## 5910        Anterselva    Pursuit 81
## 5911        Anterselva    Pursuit 81
## 5912        Anterselva    Pursuit 81
## 5913        Anterselva    Pursuit 81
## 5914        Anterselva    Pursuit 81
## 5915        Anterselva    Pursuit 81
## 5916        Anterselva    Pursuit 81
## 5917        Anterselva    Pursuit 81
## 5918        Anterselva    Pursuit 81
## 5919        Anterselva    Pursuit 81
## 5920        Anterselva    Pursuit 81
## 5921        Anterselva    Pursuit 81
## 5922        Anterselva    Pursuit 81
## 5923        Anterselva    Pursuit 81
## 5924        Anterselva    Pursuit 81
## 5925        Anterselva    Pursuit 81
## 5926        Anterselva    Pursuit 81
## 5927        Anterselva    Pursuit 81
## 5928        Anterselva    Pursuit 81
## 5929        Hochfilzen     Sprint 84
## 5930        Hochfilzen     Sprint 84
## 5931        Hochfilzen     Sprint 84
## 5932        Hochfilzen     Sprint 84
## 5933        Hochfilzen     Sprint 84
## 5934        Hochfilzen     Sprint 84
## 5935        Hochfilzen     Sprint 84
## 5936        Hochfilzen     Sprint 84
## 5937        Hochfilzen     Sprint 84
## 5938        Hochfilzen     Sprint 84
## 5939        Hochfilzen     Sprint 84
## 5940        Hochfilzen     Sprint 84
## 5941        Hochfilzen     Sprint 84
## 5942        Hochfilzen     Sprint 84
## 5943        Hochfilzen     Sprint 84
## 5944        Hochfilzen     Sprint 84
## 5945        Hochfilzen     Sprint 84
## 5946        Hochfilzen     Sprint 84
## 5947        Hochfilzen     Sprint 84
## 5948        Hochfilzen     Sprint 84
## 5949        Hochfilzen     Sprint 84
## 5950        Hochfilzen     Sprint 84
## 5951        Hochfilzen     Sprint 84
## 5952        Hochfilzen     Sprint 84
## 5953        Hochfilzen     Sprint 84
## 5954        Hochfilzen     Sprint 84
## 5955        Hochfilzen     Sprint 84
## 5956        Hochfilzen     Sprint 84
## 5957        Hochfilzen     Sprint 84
## 5958        Hochfilzen     Sprint 84
## 5959        Hochfilzen     Sprint 84
## 5960        Hochfilzen     Sprint 84
## 5961        Hochfilzen     Sprint 84
## 5962        Hochfilzen     Sprint 84
## 5963        Hochfilzen     Sprint 84
## 5964        Hochfilzen     Sprint 84
## 5965        Hochfilzen     Sprint 84
## 5966        Hochfilzen     Sprint 84
## 5967        Hochfilzen     Sprint 84
## 5968        Hochfilzen     Sprint 84
## 5969        Hochfilzen     Sprint 84
## 5970        Hochfilzen     Sprint 84
## 5971        Hochfilzen     Sprint 84
## 5972        Hochfilzen     Sprint 84
## 5973        Hochfilzen     Sprint 84
## 5974        Hochfilzen     Sprint 84
## 5975        Hochfilzen     Sprint 84
## 5976        Hochfilzen     Sprint 84
## 5977        Hochfilzen     Sprint 84
## 5978        Hochfilzen     Sprint 84
## 5979        Hochfilzen     Sprint 84
## 5980        Hochfilzen     Sprint 84
## 5981        Hochfilzen     Sprint 84
## 5982        Hochfilzen     Sprint 84
## 5983        Hochfilzen     Sprint 84
## 5984        Hochfilzen     Sprint 84
## 5985        Hochfilzen     Sprint 84
## 5986        Hochfilzen     Sprint 84
## 5987        Hochfilzen     Sprint 84
## 5988        Hochfilzen     Sprint 84
## 5989        Hochfilzen     Sprint 84
## 5990        Hochfilzen     Sprint 84
## 5991        Hochfilzen     Sprint 84
## 5992        Hochfilzen     Sprint 84
## 5993        Hochfilzen     Sprint 84
## 5994        Hochfilzen     Sprint 84
## 5995        Hochfilzen     Sprint 84
## 5996        Hochfilzen     Sprint 84
## 5997        Hochfilzen     Sprint 84
## 5998        Hochfilzen     Sprint 84
## 5999        Hochfilzen     Sprint 84
## 6000        Hochfilzen     Sprint 84
## 6001        Hochfilzen     Sprint 84
## 6002        Hochfilzen     Sprint 84
## 6003        Hochfilzen     Sprint 84
## 6004        Hochfilzen     Sprint 84
## 6005        Hochfilzen     Sprint 84
## 6006        Hochfilzen     Sprint 84
## 6007        Hochfilzen     Sprint 84
## 6008        Hochfilzen     Sprint 84
## 6009        Hochfilzen     Sprint 84
## 6010        Hochfilzen     Sprint 84
## 6011        Hochfilzen     Sprint 84
## 6012        Hochfilzen     Sprint 84
## 6013        Hochfilzen     Sprint 84
## 6014        Hochfilzen     Sprint 84
## 6015        Hochfilzen     Sprint 84
## 6016        Hochfilzen     Sprint 84
## 6017        Hochfilzen     Sprint 84
## 6018        Hochfilzen     Sprint 84
## 6019        Hochfilzen     Sprint 84
## 6020        Hochfilzen     Sprint 84
## 6021        Hochfilzen     Sprint 84
## 6022        Hochfilzen     Sprint 84
## 6023        Hochfilzen     Sprint 84
## 6024        Hochfilzen     Sprint 84
## 6025        Hochfilzen     Sprint 84
## 6026        Hochfilzen     Sprint 84
## 6027        Hochfilzen     Sprint 84
## 6028        Hochfilzen     Sprint 84
## 6029        Hochfilzen     Sprint 84
## 6030        Hochfilzen     Sprint 84
## 6031        Hochfilzen     Sprint 84
## 6032        Hochfilzen     Sprint 84
## 6033        Hochfilzen     Sprint 84
## 6034        Hochfilzen     Sprint 84
## 6035        Hochfilzen     Sprint 84
## 6036        Hochfilzen     Sprint 84
## 6037        Hochfilzen    Pursuit 83
## 6038        Hochfilzen    Pursuit 83
## 6039        Hochfilzen    Pursuit 83
## 6040        Hochfilzen    Pursuit 83
## 6041        Hochfilzen    Pursuit 83
## 6042        Hochfilzen    Pursuit 83
## 6043        Hochfilzen    Pursuit 83
## 6044        Hochfilzen    Pursuit 83
## 6045        Hochfilzen    Pursuit 83
## 6046        Hochfilzen    Pursuit 83
## 6047        Hochfilzen    Pursuit 83
## 6048        Hochfilzen    Pursuit 83
## 6049        Hochfilzen    Pursuit 83
## 6050        Hochfilzen    Pursuit 83
## 6051        Hochfilzen    Pursuit 83
## 6052        Hochfilzen    Pursuit 83
## 6053        Hochfilzen    Pursuit 83
## 6054        Hochfilzen    Pursuit 83
## 6055        Hochfilzen    Pursuit 83
## 6056        Hochfilzen    Pursuit 83
## 6057        Hochfilzen    Pursuit 83
## 6058        Hochfilzen    Pursuit 83
## 6059        Hochfilzen    Pursuit 83
## 6060        Hochfilzen    Pursuit 83
## 6061        Hochfilzen    Pursuit 83
## 6062        Hochfilzen    Pursuit 83
## 6063        Hochfilzen    Pursuit 83
## 6064        Hochfilzen    Pursuit 83
## 6065        Hochfilzen    Pursuit 83
## 6066        Hochfilzen    Pursuit 83
## 6067        Hochfilzen    Pursuit 83
## 6068        Hochfilzen    Pursuit 83
## 6069        Hochfilzen    Pursuit 83
## 6070        Hochfilzen    Pursuit 83
## 6071        Hochfilzen    Pursuit 83
## 6072        Hochfilzen    Pursuit 83
## 6073        Hochfilzen    Pursuit 83
## 6074        Hochfilzen    Pursuit 83
## 6075        Hochfilzen    Pursuit 83
## 6076        Hochfilzen    Pursuit 83
## 6077        Hochfilzen    Pursuit 83
## 6078        Hochfilzen    Pursuit 83
## 6079        Hochfilzen    Pursuit 83
## 6080        Hochfilzen    Pursuit 83
## 6081        Hochfilzen    Pursuit 83
## 6082        Hochfilzen    Pursuit 83
## 6083        Hochfilzen    Pursuit 83
## 6084        Hochfilzen    Pursuit 83
## 6085        Hochfilzen    Pursuit 83
## 6086        Hochfilzen    Pursuit 83
## 6087        Hochfilzen    Pursuit 83
## 6088        Hochfilzen    Pursuit 83
## 6089        Hochfilzen    Pursuit 83
## 6090        Hochfilzen    Pursuit 83
## 6091        Hochfilzen    Pursuit 83
## 6092        Hochfilzen    Pursuit 83
## 6093        Hochfilzen    Pursuit 83
## 6094       Kontiolahti     Sprint 86
## 6095       Kontiolahti     Sprint 86
## 6096       Kontiolahti     Sprint 86
## 6097       Kontiolahti     Sprint 86
## 6098       Kontiolahti     Sprint 86
## 6099       Kontiolahti     Sprint 86
## 6100       Kontiolahti     Sprint 86
## 6101       Kontiolahti     Sprint 86
## 6102       Kontiolahti     Sprint 86
## 6103       Kontiolahti     Sprint 86
## 6104       Kontiolahti     Sprint 86
## 6105       Kontiolahti     Sprint 86
## 6106       Kontiolahti     Sprint 86
## 6107       Kontiolahti     Sprint 86
## 6108       Kontiolahti     Sprint 86
## 6109       Kontiolahti     Sprint 86
## 6110       Kontiolahti     Sprint 86
## 6111       Kontiolahti     Sprint 86
## 6112       Kontiolahti     Sprint 86
## 6113       Kontiolahti     Sprint 86
## 6114       Kontiolahti     Sprint 86
## 6115       Kontiolahti     Sprint 86
## 6116       Kontiolahti     Sprint 86
## 6117       Kontiolahti     Sprint 86
## 6118       Kontiolahti     Sprint 86
## 6119       Kontiolahti     Sprint 86
## 6120       Kontiolahti     Sprint 86
## 6121       Kontiolahti     Sprint 86
## 6122       Kontiolahti     Sprint 86
## 6123       Kontiolahti     Sprint 86
## 6124       Kontiolahti     Sprint 86
## 6125       Kontiolahti     Sprint 86
## 6126       Kontiolahti     Sprint 86
## 6127       Kontiolahti     Sprint 86
## 6128       Kontiolahti     Sprint 86
## 6129       Kontiolahti     Sprint 86
## 6130       Kontiolahti     Sprint 86
## 6131       Kontiolahti     Sprint 86
## 6132       Kontiolahti     Sprint 86
## 6133       Kontiolahti     Sprint 86
## 6134       Kontiolahti     Sprint 86
## 6135       Kontiolahti     Sprint 86
## 6136       Kontiolahti     Sprint 86
## 6137       Kontiolahti     Sprint 86
## 6138       Kontiolahti     Sprint 86
## 6139       Kontiolahti     Sprint 86
## 6140       Kontiolahti     Sprint 86
## 6141       Kontiolahti     Sprint 86
## 6142       Kontiolahti     Sprint 86
## 6143       Kontiolahti     Sprint 86
## 6144       Kontiolahti     Sprint 86
## 6145       Kontiolahti     Sprint 86
## 6146       Kontiolahti     Sprint 86
## 6147       Kontiolahti     Sprint 86
## 6148       Kontiolahti     Sprint 86
## 6149       Kontiolahti     Sprint 86
## 6150       Kontiolahti     Sprint 86
## 6151       Kontiolahti     Sprint 86
## 6152       Kontiolahti     Sprint 86
## 6153       Kontiolahti     Sprint 86
## 6154       Kontiolahti     Sprint 86
## 6155       Kontiolahti     Sprint 86
## 6156       Kontiolahti     Sprint 86
## 6157       Kontiolahti     Sprint 86
## 6158       Kontiolahti     Sprint 86
## 6159       Kontiolahti     Sprint 86
## 6160       Kontiolahti     Sprint 86
## 6161       Kontiolahti     Sprint 86
## 6162       Kontiolahti     Sprint 86
## 6163       Kontiolahti     Sprint 86
## 6164       Kontiolahti     Sprint 86
## 6165       Kontiolahti     Sprint 86
## 6166       Kontiolahti     Sprint 86
## 6167       Kontiolahti     Sprint 86
## 6168       Kontiolahti     Sprint 86
## 6169       Kontiolahti     Sprint 86
## 6170       Kontiolahti     Sprint 86
## 6171       Kontiolahti     Sprint 86
## 6172       Kontiolahti     Sprint 86
## 6173       Kontiolahti     Sprint 86
## 6174       Kontiolahti     Sprint 86
## 6175       Kontiolahti     Sprint 86
## 6176       Kontiolahti     Sprint 86
## 6177       Kontiolahti     Sprint 86
## 6178       Kontiolahti     Sprint 86
## 6179       Kontiolahti     Sprint 86
## 6180       Kontiolahti     Sprint 86
## 6181       Kontiolahti     Sprint 86
## 6182       Kontiolahti     Sprint 86
## 6183       Kontiolahti     Sprint 86
## 6184       Kontiolahti     Sprint 86
## 6185       Kontiolahti     Sprint 86
## 6186       Kontiolahti     Sprint 86
## 6187       Kontiolahti     Sprint 86
## 6188       Kontiolahti     Sprint 86
## 6189       Kontiolahti     Sprint 86
## 6190       Kontiolahti     Sprint 86
## 6191       Kontiolahti     Sprint 86
## 6192       Kontiolahti     Sprint 86
## 6193       Kontiolahti     Sprint 86
## 6194       Kontiolahti Mass start 85
## 6195       Kontiolahti Mass start 85
## 6196       Kontiolahti Mass start 85
## 6197       Kontiolahti Mass start 85
## 6198       Kontiolahti Mass start 85
## 6199       Kontiolahti Mass start 85
## 6200       Kontiolahti Mass start 85
## 6201       Kontiolahti Mass start 85
## 6202       Kontiolahti Mass start 85
## 6203       Kontiolahti Mass start 85
## 6204       Kontiolahti Mass start 85
## 6205       Kontiolahti Mass start 85
## 6206       Kontiolahti Mass start 85
## 6207       Kontiolahti Mass start 85
## 6208       Kontiolahti Mass start 85
## 6209       Kontiolahti Mass start 85
## 6210       Kontiolahti Mass start 85
## 6211       Kontiolahti Mass start 85
## 6212       Kontiolahti Mass start 85
## 6213       Kontiolahti Mass start 85
## 6214       Kontiolahti Mass start 85
## 6215       Kontiolahti Mass start 85
## 6216       Kontiolahti Mass start 85
## 6217       Kontiolahti Mass start 85
## 6218       Kontiolahti Mass start 85
## 6219       Kontiolahti Mass start 85
## 6220       Kontiolahti Mass start 85
## 6221       Kontiolahti Mass start 85
## 6222       Kontiolahti Mass start 85
## 6223       Kontiolahti Mass start 85
## 6224           Oberhof     Sprint 88
## 6225           Oberhof     Sprint 88
## 6226           Oberhof     Sprint 88
## 6227           Oberhof     Sprint 88
## 6228           Oberhof     Sprint 88
## 6229           Oberhof     Sprint 88
## 6230           Oberhof     Sprint 88
## 6231           Oberhof     Sprint 88
## 6232           Oberhof     Sprint 88
## 6233           Oberhof     Sprint 88
## 6234           Oberhof     Sprint 88
## 6235           Oberhof     Sprint 88
## 6236           Oberhof     Sprint 88
## 6237           Oberhof     Sprint 88
## 6238           Oberhof     Sprint 88
## 6239           Oberhof     Sprint 88
## 6240           Oberhof     Sprint 88
## 6241           Oberhof     Sprint 88
## 6242           Oberhof     Sprint 88
## 6243           Oberhof     Sprint 88
## 6244           Oberhof     Sprint 88
## 6245           Oberhof     Sprint 88
## 6246           Oberhof     Sprint 88
## 6247           Oberhof     Sprint 88
## 6248           Oberhof     Sprint 88
## 6249           Oberhof     Sprint 88
##  [ reached 'max' / getOption("max.print") -- omitted 8141 rows ]
# Initializing the race_id for the second to last loop data frame
race_id <- 0
# The set of allowable values for the Rank column of the loop data frame
allowables <- c(1:127)
# Initializing the final loop data frame
df_final_loop_women <- data.frame()

# Beginning the cycle that loops over every year and every venue
for (i in seq_along(years)){
  
  for(j in seq_along(locations[[years[i]]])){
    
    
    # All the files that represent a loop in our directory
    files <- list.files(locations_path_women[[years[i]]],
                  pattern=sprintf('loop...%s',locations[[years[i]]][j]),full.names = TRUE )
    
      # Looping over all the files
      for (file in files){
        # Here we select, between all loop files the ones that represent the second to last loop,
        # that is, the loop in which the biathlete arrive at the last shooting range
        if (
            (grepl(pattern = 'pursuit', x =file, fixed=TRUE)  
            &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'sprint', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_2', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'individual', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            || 
            (grepl(pattern = 'mass_start', x =file, fixed=TRUE)  
             &&  
            grepl(pattern = 'loop_4', x =file, fixed=TRUE))
            
            ){
            # Updating the race id
            race_id <- race_id + 1
            
            # Reading the file into a data frame
            df_loop <- read.csv2(file = file, sep = '\t')
            
            # Here we raise a flag if we don't have the Rank colun in the created data frame
            if('Rank' %!in% colnames(df_loop)){
                cat(paste('There is a mistake in', file, '\n'))
            
            # Here we raise a flag and print the relative fail if we have a Rank value that is not allowed
            if(length(df_loop$Rank[df_loop$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
            
            
            } 
            
            # The column Ski.Time is present only on individual races, for tha others we fill it with 0
            # in order to make the rbind possible
            if ('Ski.Time'%!in% colnames(df_loop)){
              df_loop[['Ski.Time']] <- rep(0, nrow(df_loop))
            }
            
            # The Canmore's short individual did not have the Range.Time column, so we create it for the 
            # rbind... but who cares about short individuals anyway!!!
            if ('Range.Time'%!in% colnames(df_loop)){
              df_loop[['Range.Time']] <- rep(0, nrow(df_loop))
            }
            
            # The columns of the data frame
            columns_df <- colnames(df_loop)
            
            # The index from which column regarding times start
            idx_time_columns <- which(columns_df=='Nation')
            
            # The 'time' columns of the table, the -1 at the end is to delete 'Nation'
            # that is not between them
            time_columns <- columns_df[idx_time_columns:length(columns_df)][-1]
            
            # Adding the column specifying the year of the race
            df_loop$year <- rep(years[i], nrow(df_loop))
            
            # Adding the column specifying the venue of the race
            df_loop$location <- rep(locations[[years[i]]][j], nrow(df_loop))
            
           
            
            # Adding the column specifying the type of the race
            if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Pursuit', nrow(df_loop))
            }
            else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Individual', nrow(df_loop))
            }
            else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Mass start', nrow(df_loop))
            }
            else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
              df_loop$race_type <- rep('Sprint', nrow(df_loop))
            }
            else{
              cat(paste('There is a mistake in',file,
                        'no race type specified'))
            }
            
             # Adding the column with the id of the race
            
            # Assigning to the race the same id that it has on the results data frame
            df_loop$ID <-rep( list_id_women[[paste(df_loop$race_type[1], years[i], locations[[years[i]]][j], 
                         df_loop$Given.Name[df_res$Rank %!in% c('DSQ')][1],  
                         df_loop$Given.Name[df_res$Rank %!in% c('DSQ')][2])]], nrow(df_loop))
            
            # Initializing the list of the reference times among all the columns, we have in fact that 
            # time columns are note stored as absolute times: we have a reference time and then the other records
            # reference to it as +'time_interval'
            reference_times <- list()
            
            # Looping over all the time columns
            for(column in time_columns){
              
              # In individual races penalty times, as we know, are a thing of their own and the data set
              # itself seem to have noticed! It does not have in fact a value for biathletes that found the
              # 0 in a certain shooting range. We deal with it by giving by default the value 0.
              # We know what you are thinking: What if every one missed at least once?
              # Come on have a little trust in your sport heroes! as soon as Sturla Holm Lægreid will be around
              # we are more them safe!
              if (column == 'Penalty.Time'
                  &&
                  grepl(pattern = 'individual', x = file, fixed=TRUE)
                  )
              {reference_time <- duration(second = 0)}
              
              # In the else statement instead we select as the reference time the record with no '+' in 
              # its body, the [1] is there to arbitrary break the ties between equally good reference times
              else{
                reference_time <- df_loop[[column]][!grepl(pattern = '+', x =df_loop[[column]],
                            fixed=TRUE)]
                }
              reference_time <- reference_time[1]
              
              # In this if cycle we convert the reference time from a string to a time duration
              # thanks to the lubridate package and its duration function
              
              # The first case is for whe we have minutes and not only second where we have a column 
              # as a separator
              if (grepl(pattern = ':', x  = reference_time,
                            fixed=TRUE)){
                
                # Changing the reference time into an iterable
                string_sep <- unlist(strsplit((reference_time),""))
                
                # Getting the index of the column
                idx_sep <- unlist(gregexpr(':', reference_time, fixed = TRUE))
                
                # This step raises a flag if having a double colon signaling hours, 
                # comes out: biathletes are no snails!
                if (length(idx_sep) > 1){cat(paste('Do we have hours now?? in', file  ))}
                
                # The minute part of the reference time
                min <- as.numeric(paste(string_sep[1:idx_sep-1], collapse=""))
                
                # The second part of the reference time
                sec <- as.numeric(paste(string_sep[-c(1:idx_sep)], collapse=""))
                reference_time_ <- duration(minute= min, second=sec)
                
              }
              # This second case is for reference times that don't reach a minute
              else{
                sec <- as.numeric(reference_time)
                reference_time_ <- duration(second=sec)
              }
              
              # Updating the list
              reference_times[[column]] <- reference_time_
              
              # Index of the reference times
              reference_time_idx <- which(!grepl(pattern = '+', x =df_loop[[column]],
                            fixed=TRUE))
              
              # Renaming the times of the current columns
              times_to_add <- df_loop[[column]]
              
              # Initializing the column of the absolute times
              final_adding <- c()
              
              # Filling the final_adding vector
              for (k in seq_along(times_to_add)){
                
                # Putting in the reference times
                if (k %in% reference_time_idx){
                  final_adding[k] <- reference_times[[column]]
                }
                
                # Putting in the 'minutes' recorda
                else if (grepl(pattern = ':', x =times_to_add[k], fixed=TRUE)){
                  string_add <- unlist(strsplit((times_to_add[k]),""))
                  idx_add <- unlist(gregexpr(':', times_to_add[k]))
                  
                  # Flag raise for 'hour' times
                  if (length(idx_add) > 1){print('Do we have hours now?? in', file)} 
                  
                  min_add <- as.numeric(paste(string_add[1:idx_add-1], collapse=""))
                  sec_add <- as.numeric(paste(string_add[-c(1:idx_add)], collapse=""))
                  
                  adding_time <- duration(minute= min_add, second=sec_add)
                  
                  # Here the [1] is present for arbitrarily breaking ties for equally good
                  # reference times
                  final_adding[k] <- adding_time + reference_times[[column]][1]
                }
                else{
                  
                  # The original data frame contained a couple of 'broken' records, being only
                  # the string '+', we changed the values to a known fixed outlier ('+1000') and here
                  # we transform it into NA
                  if (times_to_add[k]=='+1000') {final_adding[k] <- NA}
                  
                  # Non pathological case were we have a 'seconds' time
                  else{
                    final_adding[k] <- duration(second = as.numeric(times_to_add[k])) + 
                      reference_times[[column]]
                  }
                }
                 
              }
              
              # Updating the column of the data frame
              df_loop[[column]] <- final_adding
             
              
            }
            
          # Binding together the data frames  
          df_final_loop_women <- rbind(df_final_loop_women, df_loop)
        
      }
    }
  }
}
head(df_final_loop_women)
##   Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time Course.Time
## 1    1   3  Domracheva      Darya    BLR           830.7     408.7       354.8
## 2    2  25  Makarainen      Kaisa    FIN           850.9     436.5       356.0
## 3    3   2   Dahlmeier      Laura    GER           864.8     434.0       372.2
## 4    4   5  Daubnerova       Jana    SVK           859.1     430.8       379.1
## 5    5  18   Oberhofer      Karin    ITA           878.8     457.8       365.7
## 6    6  28  Hildebrand  Franziska    GER           871.5     448.1       365.0
##   Range.Time Shooting.Time Penalty.Time Ski.Time      year   location race_type
## 1       46.2            26          7.7        0 2014-2015 Anterselva    Sprint
## 2       51.3            30         29.2        0 2014-2015 Anterselva    Sprint
## 3       53.6            33          8.2        0 2014-2015 Anterselva    Sprint
## 4       43.3            22          8.4        0 2014-2015 Anterselva    Sprint
## 5       64.7            47         27.4        0 2014-2015 Anterselva    Sprint
## 6       52.1            31         31.0        0 2014-2015 Anterselva    Sprint
##   ID
## 1  2
## 2  2
## 3  2
## 4  2
## 5  2
## 6  2
head(df_final_loop_men)
##   Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time Course.Time
## 1    1  29     Schempp      Simon    GER           957.9     476.0       424.8
## 2    2  42  Garanichev    Evgeniy    RUS           967.8     483.9       436.1
## 3    3  48         Fak      Jakov    SLO           975.8     500.5       430.3
## 4    4  49       Weger   Benjamin    SUI           986.8     483.2       426.8
## 5    5  53       Green    Brendan    CAN           981.3     489.7       436.7
## 6    6  85 L'Abee-Lund     Henrik    NOR           985.4     491.3       435.7
##   Range.Time Shooting.Time Penalty.Time Ski.Time      year   location race_type
## 1       43.2            24          8.0        0 2014-2015 Anterselva    Sprint
## 2       39.8            20          8.0        0 2014-2015 Anterselva    Sprint
## 3       43.3            23         26.9        0 2014-2015 Anterselva    Sprint
## 4       48.5            29          7.9        0 2014-2015 Anterselva    Sprint
## 5       45.6            26          7.4        0 2014-2015 Anterselva    Sprint
## 6       48.1            27          7.5        0 2014-2015 Anterselva    Sprint
##   ID
## 1  2
## 2  2
## 3  2
## 4  2
## 5  2
## 6  2

In this part we check the consistency of our import, verifying that df_results and df_loop have the same rows, in the loop data frame data accounting for DNF, DNS, DSQ, LAP and for the Bibs greater than 120 are not present.

if(res_dnf_men + res_dns_men + res_dsq_men + res_lap_men + res_over_men + nrow(df_final_loop_men) == nrow(df_results_men)){
  cat('Thank god we no one got lost')
  }else{'Who is missing?!'}
## Thank god we no one got lost
if(res_dnf_women + res_dns_women + res_dsq_women + res_lap_women + res_over_women + nrow(df_final_loop_women) == nrow(df_results_women)){
  cat('Thank god we no one got lost')
  }else{'Who is missing?!'}
## Thank god we no one got lost

Finding the clutchest biathletes in the word cup

Here we wanna work in analogy to what happens in the computation of the efficiency of a vaccine, in that framework some patients are shot with placebo and some other with the real vaccine. Based on how many patients develop the illness, the efficiency is computed as \[\frac{placebo - vaccine}{placebo} \cdot 100\].

# Performing the left join between the 2 men data frames
df_clutch_men <- merge(x=df_results_men,y=df_final_loop_men, by=c('ID', 
                                                                  'location', 'Nation', 'Rank', 'Bib',
                                                                  'Family.Name', 'Given.Name',
                                                                  'year', 'race_type'), all.x=FALSE,
                                                                  all.y=TRUE, sort=FALSE)
head(df_clutch_men)
##   ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 1  1 Anterselva    GER    1   1     Schempp      Simon 2014-2015   Pursuit
## 2  1 Anterselva    AUT    2   8        Eder      Simon 2014-2015   Pursuit
## 3  1 Anterselva    RUS    3   2  Garanichev    Evgeniy 2014-2015   Pursuit
## 4  1 Anterselva    NOR    4   9 Bjoerndalen  Ole Einar 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  25    Fourcade     Martin 2014-2015   Pursuit
## 6  1 Anterselva    GER    6  19      Lesser       Erik 2014-2015   Pursuit
##   Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1     2   1+1+0+0    31:27.9                 31:27.9          1555.9     379.1
## 2     1   0+1+0+0    31:28.0   +0.1          30:52.0          1554.5     380.8
## 3     1   0+0+1+0    31:29.0   +1.1          31:15.0          1553.9     382.4
## 4     0   0+0+0+0    31:29.8   +1.9          30:46.8          1555.5     380.4
## 5     0   0+0+0+0    31:59.8  +31.9          30:39.8          1579.0     378.8
## 6     0   0+0+0+0    32:13.5  +45.6          31:05.5          1584.3     383.3
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1       329.8       41.1            21          8.2        0
## 2       332.5       39.3            20          9.0        0
## 3       334.2       38.9            21          9.3        0
## 4       332.0       39.7            22          8.7        0
## 5       329.7       40.3            21          8.8        0
## 6       329.4       46.0            26          7.9        0
# Performing the two left join for the 2 women data frames
df_clutch_women <- merge(x=df_results_women,y=df_final_loop_women, by=c('ID', 
                                                                  'location', 'Nation', 'Rank', 'Bib',
                                                                  'Family.Name', 'Given.Name',
                                                                  'year', 'race_type'), all.x=FALSE,
                                                                  all.y=TRUE, sort=FALSE)
head(df_clutch_women)
##   ID   location Nation Rank Bib  Family.Name Given.Name      year race_type
## 1  1 Anterselva    BLR    1   1   Domracheva      Darya 2014-2015   Pursuit
## 2  1 Anterselva    RUS    2  11   Virolainen      Daria 2014-2015   Pursuit
## 3  1 Anterselva    FIN    3   2   Makarainen      Kaisa 2014-2015   Pursuit
## 4  1 Anterselva    GER    4   6   Hildebrand  Franziska 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  19 Dorin Habert      Marie 2014-2015   Pursuit
## 6  1 Anterselva    USA    6   8      Dunklee      Susan 2014-2015   Pursuit
##   Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1     1   1+0+0+0    30:58.5                  30:58.5          1517.7     367.4
## 2     1   0+0+0+1    32:19.5 +1:21.0          31:05.5          1601.3     400.9
## 3     5   2+0+1+2    32:27.5 +1:29.0          32:00.5          1629.4     414.7
## 4     1   0+0+1+0    32:27.8 +1:29.3          31:26.8          1613.8     385.0
## 5     2   0+1+1+0    32:36.5 +1:38.0          31:10.5          1629.7     379.1
## 6     1   0+1+0+0    32:39.3 +1:40.8          31:29.3          1630.9     385.7
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1       311.4       46.0            26         10.0        0
## 2       319.7       49.5            28         31.7        0
## 3       310.1       52.0            31         52.6        0
## 4       321.3       54.5            34          9.2        0
## 5       316.3       53.7            31          9.1        0
## 6       322.8       54.3            32          8.6        0
# Defining the function to create a column with the number of mistakes in the final range
final_range <- function(x){
  iterable <- unlist(strsplit((x),""))
  return(iterable[length(iterable)])
}

# Creating the 2 columns
df_clutch_men$final_range <- as.numeric(sapply(df_clutch_men$Shootings, final_range))
df_clutch_women$final_range <- as.numeric(sapply(df_clutch_women$Shootings, final_range))

For this part of the analysis we consider only head-to-head races, that is, pursuits and mass starts

#Defining the data frame with only pursuits and mass starts
df_no_chrono_men <- df_clutch_men[df_clutch_men$race_type %!in% c('Sprint', 'Individual'),]

df_no_chrono_women <- df_clutch_women[df_clutch_women$race_type %!in% c('Sprint', 'Individual'),]

# The unique ids of the races
unique_ids <- unique(df_no_chrono_men$ID)

unique_ids_w <- unique(df_no_chrono_women$ID)

# Initializing the data frame with athletes entering the last shooting range in the top ten
df_top10_men <- data.frame()

df_top10_women <- data.frame()

# Initializing the data frame with athletes entering the last shooting range outside the top ten
df_bottom <- data.frame()
df_bottom_w <- data.frame()

#Looping over the ids
for (id in unique_ids){
  # Identifying the race with each id
  race <- df_no_chrono_men[df_no_chrono_men$ID == id,]
  # Computing the time entering the shooting range
  race$entry_time <- race$Cumulative.Time - race$Range.Time - 
                    race$Penalty.Time
  # We order the race following the entry time record
  race_ord <- race[order(race$entry_time),]
  # Taking only the top 10 rows
  race_add <- race_ord[c(1:10), ]
  # Taking all the records but thew top 10
  race_add_last <- race_ord[c(11:nrow(race_ord)), ]
  # Updating the df_bottom data frame
  df_bottom <- rbind(df_bottom, race_add_last)
  # Updating the f_top10 data frame
  df_top10_men <- rbind(df_top10_men, race_add)
}


#Looping over the ids
for (id in unique_ids_w){
  # Identifying the race with each id
  race_w <- df_no_chrono_women[df_no_chrono_women$ID == id,]
  # Computing the time entering the shooting range
  race_w$entry_time <- race_w$Cumulative.Time - race_w$Range.Time - 
                    race_w$Penalty.Time
  # We order the race following the entry time record
  race_ord_w <- race_w[order(race_w$entry_time),]
  # Taking only the top 10 rows
  race_add_w <- race_ord_w[c(1:10), ]
  # Taking all the records but thew top 10
  race_add_last_w <- race_ord_w[c(11:nrow(race_ord_w)), ]
  # Updating the df_bottom data frame
  df_bottom_w <- rbind(df_bottom_w, race_add_last_w)
  # Updating the f_top10 data frame
  df_top10_women <- rbind(df_top10_women, race_add_w)
}
head(df_top10_men)
##   ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 3  1 Anterselva    RUS    3   2  Garanichev    Evgeniy 2014-2015   Pursuit
## 2  1 Anterselva    AUT    2   8        Eder      Simon 2014-2015   Pursuit
## 1  1 Anterselva    GER    1   1     Schempp      Simon 2014-2015   Pursuit
## 4  1 Anterselva    NOR    4   9 Bjoerndalen  Ole Einar 2014-2015   Pursuit
## 7  1 Anterselva    SLO    7   3         Fak      Jakov 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  25    Fourcade     Martin 2014-2015   Pursuit
##   Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 3     1   0+0+1+0    31:29.0   +1.1          31:15.0          1553.9     382.4
## 2     1   0+1+0+0    31:28.0   +0.1          30:52.0          1554.5     380.8
## 1     2   1+1+0+0    31:27.9                 31:27.9          1555.9     379.1
## 4     0   0+0+0+0    31:29.8   +1.9          30:46.8          1555.5     380.4
## 7     3   1+1+0+1    32:19.3  +51.4          31:59.3          1599.0     397.6
## 5     0   0+0+0+0    31:59.8  +31.9          30:39.8          1579.0     378.8
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time final_range
## 3       334.2       38.9            21          9.3        0           0
## 2       332.5       39.3            20          9.0        0           0
## 1       329.8       41.1            21          8.2        0           0
## 4       332.0       39.7            22          8.7        0           0
## 7       328.2       41.4            22         28.0        0           1
## 5       329.7       40.3            21          8.8        0           0
##   entry_time
## 3     1505.7
## 2     1506.2
## 1     1506.6
## 4     1507.1
## 7     1529.6
## 5     1529.9
head(df_top10_women)
##    ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 1   1 Anterselva    BLR    1   1  Domracheva      Darya 2014-2015   Pursuit
## 2   1 Anterselva    RUS    2  11  Virolainen      Daria 2014-2015   Pursuit
## 10  1 Anterselva    ITA   10  18      Wierer   Dorothea 2014-2015   Pursuit
## 3   1 Anterselva    FIN    3   2  Makarainen      Kaisa 2014-2015   Pursuit
## 9   1 Anterselva    GER    9   9      Preuss  Franziska 2014-2015   Pursuit
## 4   1 Anterselva    GER    4   6  Hildebrand  Franziska 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 1      1   1+0+0+0    30:58.5                  30:58.5          1517.7
## 2      1   0+0+0+1    32:19.5 +1:21.0          31:05.5          1601.3
## 10     2   0+0+0+2    33:11.5 +2:13.0          31:46.5          1641.7
## 3      5   2+0+1+2    32:27.5 +1:29.0          32:00.5          1629.4
## 9      3   1+0+0+2    33:05.3 +2:06.8          31:54.3          1648.7
## 4      1   0+0+1+0    32:27.8 +1:29.3          31:26.8          1613.8
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1      367.4       311.4       46.0            26         10.0        0
## 2      400.9       319.7       49.5            28         31.7        0
## 10     441.0       320.0       64.8            43         56.2        0
## 3      414.7       310.1       52.0            31         52.6        0
## 9      421.3       322.1       44.9            24         54.3        0
## 4      385.0       321.3       54.5            34          9.2        0
##    final_range entry_time
## 1            0     1461.7
## 2            1     1520.1
## 10           2     1520.7
## 3            2     1524.8
## 9            2     1549.5
## 4            0     1550.1
head(df_bottom)
##    ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 10  1 Anterselva    GER   10  11     Peiffer       Arnd 2014-2015   Pursuit
## 15  1 Anterselva    AUT   15  12    Eberhard     Julian 2014-2015   Pursuit
## 12  1 Anterselva    GER   12  30       Boehm     Daniel 2014-2015   Pursuit
## 14  1 Anterselva    RUS   14  16     Lapshin    Timofei 2014-2015   Pursuit
## 11  1 Anterselva    CZE   11  10     Moravec     Ondrej 2014-2015   Pursuit
## 9   1 Anterselva    UKR    9  13  Pidruchnyi     Dmytro 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 10     1   1+0+0+0    32:27.9 +1:00.0          31:39.9          1608.5
## 15     2   0+1+0+1    32:52.7 +1:24.8          32:03.7          1622.6
## 12     0   0+0+0+0    32:30.3 +1:02.4          31:06.3          1603.4
## 14     1   1+0+0+0    32:44.5 +1:16.6          31:43.5          1612.7
## 11     2   0+1+1+0    32:29.3 +1:01.4          31:43.3          1615.1
## 9      2   0+1+1+0    32:26.9   +59.0          31:35.9          1615.6
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 10     391.3       332.8       50.2            30          8.3        0
## 15     401.6       330.8       42.1            24         28.7        0
## 12     379.4       328.4       42.9            24          8.1        0
## 14     393.5       338.4       46.9            27          8.2        0
## 11     382.4       330.6       43.9            24          7.9        0
## 9      377.9       326.8       43.5            23          7.6        0
##    final_range entry_time
## 10           0     1550.0
## 15           1     1551.8
## 12           0     1552.4
## 14           0     1557.6
## 11           0     1563.3
## 9            0     1564.5
head(df_bottom_w)
##    ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 7   1 Anterselva    SVK    7   4  Daubnerova       Jana 2014-2015   Pursuit
## 12  1 Anterselva    FRA   12  17 Latuilliere      Enora 2014-2015   Pursuit
## 13  1 Anterselva    GER   13   3   Dahlmeier      Laura 2014-2015   Pursuit
## 17  1 Anterselva    SUI   17  20    Gasparin      Elisa 2014-2015   Pursuit
## 15  1 Anterselva    RUS   15  25   Shumilova  Ekaterina 2014-2015   Pursuit
## 25  1 Anterselva    CAN   25  29    Crawford    Rosanna 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 7      2   0+0+2+0    32:58.7 +2:00.2          32:03.7          1638.1
## 12     3   1+0+1+1    33:18.7 +2:20.2          31:54.7          1664.2
## 13     2   0+2+0+0    33:19.0 +2:20.5          32:29.0          1660.1
## 17     3   2+0+0+1    33:38.6 +2:40.1          32:11.6          1680.7
## 15     2   0+0+1+1    33:35.6 +2:37.1          31:55.6          1678.6
## 25     1   0+0+0+1    34:26.7 +3:28.2          32:38.7          1693.4
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 7      391.3       332.3       49.5            27          9.5        0
## 12     408.9       325.4       51.5            31         32.0        0
## 13     393.0       329.8       54.1            32          9.1        0
## 17     413.1       329.8       52.6            32         30.7        0
## 15     410.9       330.1       47.2            24         33.6        0
## 25     424.9       342.3       49.8            27         32.8        0
##    final_range entry_time
## 7            0     1579.1
## 12           1     1580.7
## 13           0     1596.9
## 17           1     1597.4
## 15           1     1597.8
## 25           1     1610.8
# Creating the column with the full name of the record
df_bottom$full_name <- paste(df_bottom$Family.Name, df_bottom$Given.Name, '')
df_bottom_w$full_name <- paste(df_bottom_w$Family.Name, df_bottom_w$Given.Name, '')

# Solving the Alexander Loginov problem
df_bottom$full_name[df_bottom$full_name == 'Loginov Alexandr '] <- 'Loginov Alexander '
# Creating the column with the full name of the record
df_top10_men$full_name <- paste(df_top10_men$Family.Name, df_top10_men$Given.Name, '')
df_top10_women$full_name <- paste(df_top10_women$Family.Name, df_top10_women$Given.Name, '')
# Solving the Alexander Loginov problem
df_top10_men$full_name[df_top10_men$full_name == 'Loginov Alexandr '] <- 'Loginov Alexander '

# Defining the vector of biathletes that have more than 5 top ten appearances
top_names <- names(table(df_top10_men$full_name)[unname(table(df_top10_men$full_name))>=5])
top_names_w <- names(table(df_top10_women$full_name)[unname(table(df_top10_women$full_name))>=5])
# Selecting only the top names
top_names_top_10_w <- df_top10_women[df_top10_women$full_name %in% top_names_w,]
top_names_top_10 <- df_top10_men[df_top10_men$full_name %in% top_names,]
head(top_names_top_10)
##   ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 3  1 Anterselva    RUS    3   2  Garanichev    Evgeniy 2014-2015   Pursuit
## 2  1 Anterselva    AUT    2   8        Eder      Simon 2014-2015   Pursuit
## 1  1 Anterselva    GER    1   1     Schempp      Simon 2014-2015   Pursuit
## 4  1 Anterselva    NOR    4   9 Bjoerndalen  Ole Einar 2014-2015   Pursuit
## 7  1 Anterselva    SLO    7   3         Fak      Jakov 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  25    Fourcade     Martin 2014-2015   Pursuit
##   Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 3     1   0+0+1+0    31:29.0   +1.1          31:15.0          1553.9     382.4
## 2     1   0+1+0+0    31:28.0   +0.1          30:52.0          1554.5     380.8
## 1     2   1+1+0+0    31:27.9                 31:27.9          1555.9     379.1
## 4     0   0+0+0+0    31:29.8   +1.9          30:46.8          1555.5     380.4
## 7     3   1+1+0+1    32:19.3  +51.4          31:59.3          1599.0     397.6
## 5     0   0+0+0+0    31:59.8  +31.9          30:39.8          1579.0     378.8
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time final_range
## 3       334.2       38.9            21          9.3        0           0
## 2       332.5       39.3            20          9.0        0           0
## 1       329.8       41.1            21          8.2        0           0
## 4       332.0       39.7            22          8.7        0           0
## 7       328.2       41.4            22         28.0        0           1
## 5       329.7       40.3            21          8.8        0           0
##   entry_time              full_name
## 3     1505.7    Garanichev Evgeniy 
## 2     1506.2            Eder Simon 
## 1     1506.6         Schempp Simon 
## 4     1507.1 Bjoerndalen Ole Einar 
## 7     1529.6             Fak Jakov 
## 5     1529.9       Fourcade Martin
head(top_names_top_10_w)
##    ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 1   1 Anterselva    BLR    1   1  Domracheva      Darya 2014-2015   Pursuit
## 2   1 Anterselva    RUS    2  11  Virolainen      Daria 2014-2015   Pursuit
## 10  1 Anterselva    ITA   10  18      Wierer   Dorothea 2014-2015   Pursuit
## 3   1 Anterselva    FIN    3   2  Makarainen      Kaisa 2014-2015   Pursuit
## 9   1 Anterselva    GER    9   9      Preuss  Franziska 2014-2015   Pursuit
## 4   1 Anterselva    GER    4   6  Hildebrand  Franziska 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 1      1   1+0+0+0    30:58.5                  30:58.5          1517.7
## 2      1   0+0+0+1    32:19.5 +1:21.0          31:05.5          1601.3
## 10     2   0+0+0+2    33:11.5 +2:13.0          31:46.5          1641.7
## 3      5   2+0+1+2    32:27.5 +1:29.0          32:00.5          1629.4
## 9      3   1+0+0+2    33:05.3 +2:06.8          31:54.3          1648.7
## 4      1   0+0+1+0    32:27.8 +1:29.3          31:26.8          1613.8
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1      367.4       311.4       46.0            26         10.0        0
## 2      400.9       319.7       49.5            28         31.7        0
## 10     441.0       320.0       64.8            43         56.2        0
## 3      414.7       310.1       52.0            31         52.6        0
## 9      421.3       322.1       44.9            24         54.3        0
## 4      385.0       321.3       54.5            34          9.2        0
##    final_range entry_time             full_name
## 1            0     1461.7     Domracheva Darya 
## 2            1     1520.1     Virolainen Daria 
## 10           2     1520.7      Wierer Dorothea 
## 3            2     1524.8     Makarainen Kaisa 
## 9            2     1549.5     Preuss Franziska 
## 4            0     1550.1 Hildebrand Franziska
# Selecting only the athletes in top_names
top_names_bottom <- df_bottom[df_bottom$full_name %in% top_names,]
top_names_bottom_w <- df_bottom_w[df_bottom_w$full_name %in% top_names_w,]
head(top_names_bottom)
##    ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 10  1 Anterselva    GER   10  11     Peiffer       Arnd 2014-2015   Pursuit
## 15  1 Anterselva    AUT   15  12    Eberhard     Julian 2014-2015   Pursuit
## 11  1 Anterselva    CZE   11  10     Moravec     Ondrej 2014-2015   Pursuit
## 9   1 Anterselva    UKR    9  13  Pidruchnyi     Dmytro 2014-2015   Pursuit
## 17  1 Anterselva    NOR   17  28    Svendsen Emil Hegle 2014-2015   Pursuit
## 20  1 Anterselva    SWE   20  20  Lindstroem    Fredrik 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 10     1   1+0+0+0    32:27.9 +1:00.0          31:39.9          1608.5
## 15     2   0+1+0+1    32:52.7 +1:24.8          32:03.7          1622.6
## 11     2   0+1+1+0    32:29.3 +1:01.4          31:43.3          1615.1
## 9      2   0+1+1+0    32:26.9   +59.0          31:35.9          1615.6
## 17     2   0+0+1+1    33:14.7 +1:46.8          31:51.7          1641.2
## 20     1   0+0+0+1    33:29.6 +2:01.7          32:17.6          1658.2
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 10     391.3       332.8       50.2            30          8.3        0
## 15     401.6       330.8       42.1            24         28.7        0
## 11     382.4       330.6       43.9            24          7.9        0
## 9      377.9       326.8       43.5            23          7.6        0
## 17     409.0       333.5       45.1            25         30.4        0
## 20     426.9       348.0       48.3            27         30.6        0
##    final_range entry_time            full_name
## 10           0     1550.0        Peiffer Arnd 
## 15           1     1551.8     Eberhard Julian 
## 11           0     1563.3      Moravec Ondrej 
## 9            0     1564.5   Pidruchnyi Dmytro 
## 17           1     1565.7 Svendsen Emil Hegle 
## 20           1     1579.3  Lindstroem Fredrik
head(top_names_bottom_w)
##    ID   location Nation Rank Bib Family.Name  Given.Name      year race_type
## 13  1 Anterselva    GER   13   3   Dahlmeier       Laura 2014-2015   Pursuit
## 18  1 Anterselva    CZE   18  16     Vitkova    Veronika 2014-2015   Pursuit
## 19  1 Anterselva    UKR   19  30      Dzhima      Yuliia 2014-2015   Pursuit
## 16  1 Anterselva    NOR   16  36  Roeiseland Marte Olsbu 2014-2015   Pursuit
## 20  1 Anterselva    CZE   20  23   Koukalova    Gabriela 2014-2015   Pursuit
## 23  1 Anterselva    NOR   23  21     Eckhoff       Tiril 2014-2015   Pursuit
##    Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time
## 13     2   0+2+0+0    33:19.0 +2:20.5          32:29.0          1660.1
## 18     4   1+1+1+1    33:40.7 +2:42.2          32:18.7          1692.2
## 19     1   0+1+0+0    33:42.5 +2:44.0          31:54.5          1676.5
## 16     1   0+1+0+0    33:35.7 +2:37.2          31:32.7          1672.9
## 20     2   0+1+1+0    33:46.6 +2:48.1          32:14.6          1676.7
## 23     6   1+2+1+2    34:09.1 +3:10.6          32:41.1          1722.5
##    Loop.Time Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 13     393.0       329.8       54.1            32          9.1        0
## 18     409.6       329.9       47.6            26         32.1        0
## 19     386.3       329.4       48.1            28          8.8        0
## 16     374.9       322.6       43.4            23          8.9        0
## 20     385.1       329.9       46.7            26          8.5        0
## 23     420.8       320.3       46.6            25         53.9        0
##    final_range entry_time               full_name
## 13           0     1596.9        Dahlmeier Laura 
## 18           1     1612.5       Vitkova Veronika 
## 19           0     1619.6          Dzhima Yuliia 
## 16           0     1620.6 Roeiseland Marte Olsbu 
## 20           0     1621.5     Koukalova Gabriela 
## 23           2     1622.0          Eckhoff Tiril

Now we want to visualize the most consistent athletes, we plot the percentage of times the top biathletes entered the final shooting range in a top ten position.

# The percentage of times each athlete entered the last shooting range in the top 10
# per each athlete
named_percentages <- table(top_names_top_10$full_name)/(table(top_names_top_10$full_name) 
                                   + table(top_names_bottom$full_name))*100

named_percentages_w <- table(top_names_top_10_w$full_name)/(table(top_names_top_10_w$full_name) 
                                   + table(top_names_bottom_w$full_name))*100

# The actual percentages
percentages <- unname(named_percentages)
percentages_w <- unname(named_percentages_w)
# The vector to order the percentages
order_perc_w <- order(percentages_w)
order_perc <- order(percentages)
plot <- ggplot() +
        geom_col(aes(x=names(named_percentages) , y=sort(unname(percentages)))) +
        
        scale_x_discrete(labels = names(named_percentages)[order_perc]) +
        
        theme_bw() +
        theme(axis.text.x = element_text(angle = 90, hjust=1, vjust=0.5)) +
        geom_col(aes(x=31 , y=unname(named_percentages[names(named_percentages)=='Hofer Lukas ']))
                 , fill='blue', color='black') +
        geom_col(aes(x=5 , y=unname(named_percentages[names(named_percentages)=='Windisch Dominik ']))
                 , fill='blue', color='black') +
        geom_col(aes(x=50 , y=unname(named_percentages[names(named_percentages)=='Fourcade Martin ']))
                 , fill='firebrick', color='black') +
        labs(x = '', y = '% of times entering in the top 10', title = 'Concistency of the top biathletes')
plot
## Don't know how to automatically pick scale for object of type table. Defaulting to continuous.

We see with no surprise how the most consistent biathlete is Martin Fourcade (highlighted in red), not anyone gets the name Monsieur Le Biathlon after all. It comes with quite the surprise though the massive advantage he has with respect to another great as Johannes Thingnes Bø, a whopping 88.7% against 75%. We have to consider though that our data starts from the 2014/2015 season so when Fourcade was already in its prime while Johannes was moving his big but first steps in the word cup. In blue we can see the two Italians represented, as we know Luki is by far the most consistent but the infamous echoes of a certain word championship still rings in our ears… CINQUE!

p.s. that Oestersund mass start isn’t represented in this part of the analysis as Dominik entered the last shooting range outside the top 10… we all know the ending though.

plot <- ggplot() +
        geom_col(aes(x=names(named_percentages_w) , y=sort(unname(percentages_w)))) +
        
        scale_x_discrete(labels = names(named_percentages_w)[order_perc_w]) +
        
        theme_bw() +
        theme(axis.text.x = element_text(angle = 90, hjust=+1, vjust = 0.5)) +
        geom_col(aes(x=46 , y=unname(named_percentages_w[names(named_percentages_w)=='Wierer Dorothea ']))
                 , fill='blue', color='black') +
        geom_col(aes(x=17 , y=unname(named_percentages_w[names(named_percentages_w)=='Vittozzi Lisa ']))
                 , fill='blue', color='black') +
        geom_col(aes(x=49 , y=unname(named_percentages_w[names(named_percentages_w)=='Domracheva Darya ']))
                 , fill='firebrick', color='black') +
        labs(x = '', y = '% of times entering in the top 10', title = 'Concistency of the top biathletes')
plot
## Don't know how to automatically pick scale for object of type table. Defaulting to continuous.

In the women’s case Domracheva, Dahlmeier and Koukalova are in a class of their own, we can notice how there isn’t a big drop in the percentage of times entering the last range in the top 10 from Domracheva to Dahlmeier contrary to what happened in the men’s case. Speaking of our heroines, Dorothea is top notch while Lisa struggle a little bit more, we have to consider though that the Sappada native was moving her first steps in the word cup at the beginning of the data acquisition.

# The data frame that will contain data representing the efficiency
efficiency_df <- data.frame(table(top_names_bottom$full_name), table(top_names_top_10$full_name))
efficiency_df_w <- data.frame(table(top_names_bottom_w$full_name), table(top_names_top_10_w$full_name))
# Eliminating the duplicate of the names
efficiency_df$Var1.1 <- NULL
efficiency_df_w$Var1.1 <- NULL
# Re-defining the column names
colnames(efficiency_df) <- c('Full Names', '# Out top 10', '# In top 10')
colnames(efficiency_df_w) <- c('Full Names', '# Out top 10', '# In top 10')
head(efficiency_df)
##                Full Names # Out top 10 # In top 10
## 1          Anev Krasimir            40           5
## 2          Babikov Anton            25           6
## 3          Bailey Lowell            33           9
## 4 Beatrix Jean Guillaume            21          14
## 5     Birnbacher Andreas            12           5
## 6    Bjoentegaard Erlend            34          14
head(efficiency_df_w)
##                 Full Names # Out top 10 # In top 10
## 1      Alimbekava Dzinara            19          12
## 2          Aymonier Celia            35           7
## 3           Bescond Anais            62          28
## 4          Bilosiuk Olena            32           5
## 5 Braisaz-Bouchet Justine            50          25
## 6           Brorsson Mona            54           9
# Getting the misses in the top 10
miss_top_10 <- aggregate(x = top_names_top_10$final_range, by=list(Names = top_names_top_10$full_name), 
                         FUN = sum)

miss_top_10_w <- aggregate(x = top_names_top_10_w$final_range, by=list(Names = top_names_top_10_w$full_name), 
                         FUN = sum)
head(miss_top_10)
##                     Names  x
## 1          Anev Krasimir   6
## 2          Babikov Anton   5
## 3          Bailey Lowell  10
## 4 Beatrix Jean Guillaume  12
## 5     Birnbacher Andreas   1
## 6    Bjoentegaard Erlend  17
head(miss_top_10_w)
##                      Names  x
## 1      Alimbekava Dzinara  14
## 2          Aymonier Celia  11
## 3           Bescond Anais  24
## 4          Bilosiuk Olena   2
## 5 Braisaz-Bouchet Justine  32
## 6           Brorsson Mona  16
# Misses when approaching not in the top ten
miss_no_top_10 <- aggregate(x = top_names_bottom$final_range, by=list(Names = top_names_bottom$full_name), 
                         FUN = sum)
head(miss_no_top_10)
##                     Names  x
## 1          Anev Krasimir  25
## 2          Babikov Anton  21
## 3          Bailey Lowell  30
## 4 Beatrix Jean Guillaume  24
## 5     Birnbacher Andreas   8
## 6    Bjoentegaard Erlend  34
miss_no_top_10_w<- aggregate(x = top_names_bottom_w$final_range, by=list(Names = top_names_bottom_w$full_name), 
                         FUN = sum)
head(miss_no_top_10_w)
##                      Names  x
## 1      Alimbekava Dzinara  18
## 2          Aymonier Celia  58
## 3           Bescond Anais  64
## 4          Bilosiuk Olena  20
## 5 Braisaz-Bouchet Justine  64
## 6           Brorsson Mona  46
# Updating the efficiency df with Misses and attempts
efficiency_df <- cbind(efficiency_df, 'Misses top 10' = miss_top_10$x, 
      'Attempts top 10' = efficiency_df$`# In top 10`*5,
      'Misses not top 10' = miss_no_top_10$x,
      'Attempts no top 10' = efficiency_df$`# Out top 10`*5)

efficiency_df_w <- cbind(efficiency_df_w, 'Misses top 10' = miss_top_10_w$x, 
      'Attempts top 10' = efficiency_df_w$`# In top 10`*5,
      'Misses not top 10' = miss_no_top_10_w$x,
      'Attempts no top 10' = efficiency_df_w$`# Out top 10`*5)
head(efficiency_df)
##                Full Names # Out top 10 # In top 10 Misses top 10
## 1          Anev Krasimir            40           5             6
## 2          Babikov Anton            25           6             5
## 3          Bailey Lowell            33           9            10
## 4 Beatrix Jean Guillaume            21          14            12
## 5     Birnbacher Andreas            12           5             1
## 6    Bjoentegaard Erlend            34          14            17
##   Attempts top 10 Misses not top 10 Attempts no top 10
## 1              25                25                200
## 2              30                21                125
## 3              45                30                165
## 4              70                24                105
## 5              25                 8                 60
## 6              70                34                170
head(efficiency_df_w)
##                 Full Names # Out top 10 # In top 10 Misses top 10
## 1      Alimbekava Dzinara            19          12            14
## 2          Aymonier Celia            35           7            11
## 3           Bescond Anais            62          28            24
## 4          Bilosiuk Olena            32           5             2
## 5 Braisaz-Bouchet Justine            50          25            32
## 6           Brorsson Mona            54           9            16
##   Attempts top 10 Misses not top 10 Attempts no top 10
## 1              60                18                 95
## 2              35                58                175
## 3             140                64                310
## 4              25                20                160
## 5             125                64                250
## 6              45                46                270

Now we wanna determine a proper prior, due to its conjugate properties we choose a beta prior. We use a beta having as mean the mean, for each biathlete, of the probability of hitting a shot. We should be careful though, the last shooting range is always a standing shooting range, so we take the hits and misses only for the last two shots.

# Adding the full name to the no_chrono data frame
df_no_chrono_men$full_name <- paste(df_no_chrono_men$Family.Name, df_no_chrono_men$Given.Name, '')

df_no_chrono_women$full_name <- paste(df_no_chrono_women$Family.Name, df_no_chrono_women$Given.Name, '')

# Function to compute the mistakes in the standing shootings
last_shots <- function(x){
  #Making our string an iterable
  iterable <- unlist(strsplit((x),""))
  #Taking the shots of interest
  string_shots <- iterable[c(5, 7)]
  #Converting the first shot
  first_shot <- as.numeric(string_shots[1])
  # Converting the second shot
  second_shot <- as.numeric(string_shots[2])
  # Returning the total mistakes
  return(first_shot + second_shot)
}

# Making the column with the total misses 
df_no_chrono_men$miss_last_2 <- sapply(X = df_no_chrono_men$Shootings, FUN = last_shots)
df_no_chrono_women$miss_last_2 <- sapply(X = df_no_chrono_women$Shootings, FUN = last_shots)

# Making the column with the standing precision
df_no_chrono_men$standing_prob <- (10-df_no_chrono_men$miss_last_2)/10
df_no_chrono_women$standing_prob <- (10-df_no_chrono_women$miss_last_2)/10
head(df_no_chrono_men)
##   ID   location Nation Rank Bib Family.Name Given.Name      year race_type
## 1  1 Anterselva    GER    1   1     Schempp      Simon 2014-2015   Pursuit
## 2  1 Anterselva    AUT    2   8        Eder      Simon 2014-2015   Pursuit
## 3  1 Anterselva    RUS    3   2  Garanichev    Evgeniy 2014-2015   Pursuit
## 4  1 Anterselva    NOR    4   9 Bjoerndalen  Ole Einar 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  25    Fourcade     Martin 2014-2015   Pursuit
## 6  1 Anterselva    GER    6  19      Lesser       Erik 2014-2015   Pursuit
##   Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1     2   1+1+0+0    31:27.9                 31:27.9          1555.9     379.1
## 2     1   0+1+0+0    31:28.0   +0.1          30:52.0          1554.5     380.8
## 3     1   0+0+1+0    31:29.0   +1.1          31:15.0          1553.9     382.4
## 4     0   0+0+0+0    31:29.8   +1.9          30:46.8          1555.5     380.4
## 5     0   0+0+0+0    31:59.8  +31.9          30:39.8          1579.0     378.8
## 6     0   0+0+0+0    32:13.5  +45.6          31:05.5          1584.3     383.3
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time final_range
## 1       329.8       41.1            21          8.2        0           0
## 2       332.5       39.3            20          9.0        0           0
## 3       334.2       38.9            21          9.3        0           0
## 4       332.0       39.7            22          8.7        0           0
## 5       329.7       40.3            21          8.8        0           0
## 6       329.4       46.0            26          7.9        0           0
##                full_name miss_last_2 standing_prob
## 1         Schempp Simon            0           1.0
## 2            Eder Simon            0           1.0
## 3    Garanichev Evgeniy            1           0.9
## 4 Bjoerndalen Ole Einar            0           1.0
## 5       Fourcade Martin            0           1.0
## 6           Lesser Erik            0           1.0
head(df_no_chrono_women)
##   ID   location Nation Rank Bib  Family.Name Given.Name      year race_type
## 1  1 Anterselva    BLR    1   1   Domracheva      Darya 2014-2015   Pursuit
## 2  1 Anterselva    RUS    2  11   Virolainen      Daria 2014-2015   Pursuit
## 3  1 Anterselva    FIN    3   2   Makarainen      Kaisa 2014-2015   Pursuit
## 4  1 Anterselva    GER    4   6   Hildebrand  Franziska 2014-2015   Pursuit
## 5  1 Anterselva    FRA    5  19 Dorin Habert      Marie 2014-2015   Pursuit
## 6  1 Anterselva    USA    6   8      Dunklee      Susan 2014-2015   Pursuit
##   Total Shootings Total.Time  Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1     1   1+0+0+0    30:58.5                  30:58.5          1517.7     367.4
## 2     1   0+0+0+1    32:19.5 +1:21.0          31:05.5          1601.3     400.9
## 3     5   2+0+1+2    32:27.5 +1:29.0          32:00.5          1629.4     414.7
## 4     1   0+0+1+0    32:27.8 +1:29.3          31:26.8          1613.8     385.0
## 5     2   0+1+1+0    32:36.5 +1:38.0          31:10.5          1629.7     379.1
## 6     1   0+1+0+0    32:39.3 +1:40.8          31:29.3          1630.9     385.7
##   Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time final_range
## 1       311.4       46.0            26         10.0        0           0
## 2       319.7       49.5            28         31.7        0           1
## 3       310.1       52.0            31         52.6        0           2
## 4       321.3       54.5            34          9.2        0           0
## 5       316.3       53.7            31          9.1        0           0
## 6       322.8       54.3            32          8.6        0           0
##               full_name miss_last_2 standing_prob
## 1     Domracheva Darya            0           1.0
## 2     Virolainen Daria            1           0.9
## 3     Makarainen Kaisa            3           0.7
## 4 Hildebrand Franziska            1           0.9
## 5   Dorin Habert Marie            1           0.9
## 6        Dunklee Susan            0           1.0
# Total misses for each biathlete over the full data frame
misses <- aggregate(x = df_no_chrono_men$miss_last_2, by = list(Names = df_no_chrono_men$full_name),
                    FUN = sum)$x

# Data frame with the number of occurrences
occ <- as.data.frame(table(df_no_chrono_men$full_name))

# Creating the joint data frame
hit_miss <- cbind(occ, misses)

# Each occurences corresponds to 10 shots
hit_miss$Freq <- hit_miss$Freq*10

# Renaming the shots
colnames(hit_miss) <- c('Names', 'Tot_Attempts', 'Misses')

# Inserting the total attempts
hit_miss$Hits <- hit_miss$Tot_Attempts - hit_miss$Misses

# Inserting the mean probability for each biathlete
hit_miss$Probabilities <- hit_miss$Hits/hit_miss$Tot_Attempts

# Restricting to the atlethes inside the top_names vector
top_names_hit_miss <- hit_miss[hit_miss$Names %in% top_names,]

head(top_names_hit_miss)
##                      Names Tot_Attempts Misses Hits Probabilities
## 4           Anev Krasimir           450     61  389     0.8644444
## 8           Babikov Anton           310     54  256     0.8258065
## 9           Bailey Lowell           420     86  334     0.7952381
## 13 Beatrix Jean Guillaume           350     76  274     0.7828571
## 17     Birnbacher Andreas           170     19  151     0.8882353
## 19    Bjoentegaard Erlend           480    112  368     0.7666667
# Total misses for each biathlete over the full data frame
misses_w <- aggregate(x = df_no_chrono_women$miss_last_2, by = list(Names = df_no_chrono_women$full_name),
                    FUN = sum)$x

# Data frame with the number of occurrences
occ_w <- as.data.frame(table(df_no_chrono_women$full_name))

# Creating the joint data frame
hit_miss_w <- cbind(occ_w, misses_w)

# Each occurences corresponds to 10 shots
hit_miss_w$Freq <- hit_miss_w$Freq*10

# Renaming the shots
colnames(hit_miss_w) <- c('Names', 'Tot_Attempts', 'Misses')

# Inserting the total attempts
hit_miss_w$Hits <- hit_miss_w$Tot_Attempts - hit_miss_w$Misses

# Inserting the mean probability for each biathlete
hit_miss_w$Probabilities <- hit_miss_w$Hits/hit_miss_w$Tot_Attempts

# Restricting to the atlethes inside the top_names vector
top_names_hit_miss_w <- hit_miss_w[hit_miss_w$Names %in% top_names_w,]

head(top_names_hit_miss_w)
##                       Names Tot_Attempts Misses Hits Probabilities
## 4       Alimbekava Dzinara           310     57  253     0.8161290
## 7           Aymonier Celia           420    124  296     0.7047619
## 16           Bescond Anais           900    167  733     0.8144444
## 18          Bilosiuk Olena           370     53  317     0.8567568
## 25 Braisaz-Bouchet Justine           750    174  576     0.7680000
## 26           Brorsson Mona           630    127  503     0.7984127
# Computing the standard deviation of the probabilities
std <- aggregate(x = df_no_chrono_men$standing_prob, 
          by = list(Category = df_no_chrono_men$full_name), FUN = sd)

# Restricting to top_names
top_names_std <- std[std$Category %in% top_names,]

# Updating the top_names_hit_miss data frame
top_names_hit_miss$std <- top_names_std$x

head(top_names_hit_miss)
##                      Names Tot_Attempts Misses Hits Probabilities       std
## 4           Anev Krasimir           450     61  389     0.8644444 0.1227628
## 8           Babikov Anton           310     54  256     0.8258065 0.1210172
## 9           Bailey Lowell           420     86  334     0.7952381 0.1464247
## 13 Beatrix Jean Guillaume           350     76  274     0.7828571 0.1543215
## 17     Birnbacher Andreas           170     19  151     0.8882353 0.1166316
## 19    Bjoentegaard Erlend           480    112  368     0.7666667 0.1342169
# Computing the standard deviation of the probabilities
std_w <- aggregate(x = df_no_chrono_women$standing_prob, 
          by = list(Category = df_no_chrono_women$full_name), FUN = sd)

# Restricting to top_names
top_names_std_w <- std_w[std_w$Category %in% top_names_w,]

# Updating the top_names_hit_miss data frame
top_names_hit_miss_w$std <- top_names_std_w$x

head(top_names_hit_miss_w)
##                       Names Tot_Attempts Misses Hits Probabilities        std
## 4       Alimbekava Dzinara           310     57  253     0.8161290 0.14164927
## 7           Aymonier Celia           420    124  296     0.7047619 0.13243016
## 16           Bescond Anais           900    167  733     0.8144444 0.13784954
## 18          Bilosiuk Olena           370     53  317     0.8567568 0.09291735
## 25 Braisaz-Bouchet Justine           750    174  576     0.7680000 0.14534209
## 26           Brorsson Mona           630    127  503     0.7984127 0.14311293
# The function to compute the alpha of the beta given mean and variance
alpha <- function(mode, sigma){
  return(mean^2*( (1-mean)/(sigma^2) - 1/mean ))
}

# The function to compute the beta of the beta given mean and alpha
beta <- function(alpha, mode){
  return(
    ((alpha - 1) - (alpha - 2)*mode)/mode
  )
}

root_func <- function(m, v){
  uni_func <- function(x){
    return(v*x^3 + x^2*(m^3-m^2 + 7*m*v - 3*v) + x*(-2*m^3 + 16*(m^2)*v + m^2 -
                                             14*m*v + 3*v) + (12*(m^3)*v -16*(m^2)*v +
                                                                7*m*v - v))
  }
  return(uniroot(uni_func, lower=1, upper=50)$root)
    
}
top_names_hit_miss$alpha <- unlist(map2(.x= top_names_hit_miss$Probabilities, 
                                        .y=top_names_hit_miss$std^2, .f=root_func))

top_names_hit_miss$beta <- beta(alpha = top_names_hit_miss$alpha, 
                                  mode = top_names_hit_miss$Probabilities)


top_names_hit_miss_w$alpha <- unlist(map2(.x= top_names_hit_miss_w$Probabilities, 
                                        .y=top_names_hit_miss_w$std^2, .f=root_func))

top_names_hit_miss_w$beta <- beta(alpha = top_names_hit_miss_w$alpha, 
                                  mode = top_names_hit_miss_w$Probabilities)
head(top_names_hit_miss)
##                      Names Tot_Attempts Misses Hits Probabilities       std
## 4           Anev Krasimir           450     61  389     0.8644444 0.1227628
## 8           Babikov Anton           310     54  256     0.8258065 0.1210172
## 9           Bailey Lowell           420     86  334     0.7952381 0.1464247
## 13 Beatrix Jean Guillaume           350     76  274     0.7828571 0.1543215
## 17     Birnbacher Andreas           170     19  151     0.8882353 0.1166316
## 19    Bjoentegaard Erlend           480    112  368     0.7666667 0.1342169
##       alpha     beta
## 4  7.880571 2.078958
## 8  8.583431 2.599630
## 9  6.022175 2.293135
## 13 5.433172 2.229639
## 17 8.294905 1.917902
## 19 7.373320 2.939706
head(top_names_hit_miss_w)
##                       Names Tot_Attempts Misses Hits Probabilities        std
## 4       Alimbekava Dzinara           310     57  253     0.8161290 0.14164927
## 7           Aymonier Celia           420    124  296     0.7047619 0.13243016
## 16           Bescond Anais           900    167  733     0.8144444 0.13784954
## 18          Bilosiuk Olena           370     53  317     0.8567568 0.09291735
## 25 Braisaz-Bouchet Justine           750    174  576     0.7680000 0.14534209
## 26           Brorsson Mona           630    127  503     0.7984127 0.14311293
##        alpha     beta
## 4   6.336627 2.202323
## 7   7.777404 3.839183
## 16  6.706881 2.300204
## 18 13.474729 3.085680
## 25  6.225416 2.578511
## 26  6.300295 2.338245
x_axis <- seq(0, 1, 0.001)
min_idx <- which.min(top_names_hit_miss$Probabilities)
min_prob <- top_names_hit_miss[min_idx,]

max_idx <- which.max(top_names_hit_miss$Probabilities)
max_prob <- top_names_hit_miss[max_idx,]

plot <- ggplot() +
        geom_line(aes(x=x_axis, y=dbeta(x=x_axis, shape1 = min_prob$alpha, shape2 = min_prob$beta),
                                        color = as.character(min_prob$Names))) +
        geom_line(aes(x=x_axis, y=dbeta(x=x_axis, shape1 = max_prob$alpha, shape2 = max_prob$beta),
                                        color = as.character(max_prob$Names))) +
        labs(color = 'Legend', x='Probability P', y='Prior PDF', title=
               'Prior of the best and worst standing shooters') +
        scale_color_manual(values= c("Kuehn Johannes " = 'firebrick', "Birnbacher Andreas " = 'navy')) +
        theme_bw()
plot

We see how the prior probability of a sharp-shoother like Birnbacher is peaked far to the right with respect to a very good skier but someone who’s standing shooting is a liability like Johannes Kuehn.

x_axis <- seq(0, 1, 0.001)
min_idx_w <- which.min(top_names_hit_miss_w$Probabilities)
min_prob_w <- top_names_hit_miss_w[min_idx_w,]

max_idx_w <- which.max(top_names_hit_miss_w$Probabilities)
max_prob_w <- top_names_hit_miss_w[max_idx_w,]

plot <- ggplot() +
        geom_line(aes(x=x_axis, y=dbeta(x=x_axis, shape1 = min_prob_w$alpha, shape2 = min_prob_w$beta),
                                        color = as.character(min_prob_w$Names))) +
        geom_line(aes(x=x_axis, y=dbeta(x=x_axis, shape1 = max_prob_w$alpha, shape2 = max_prob_w$beta),
                                        color = as.character(max_prob_w$Names))) +
        labs(color = 'Legend', x='Probability P', y='Prior PDF', title=
               'Prior of the best and worst standing shooters') +
        scale_color_manual(values= c("Sola Hanna " = 'firebrick', "Skardino Nadezhda " = 'navy')) +
        theme_bw()
plot

Also here we notice how the a strong skier but inconsistent shooter like Hanna Sola has the prior peaked at the worst percentage while in this battle within the Belarus’ borders Skardino performs much better.

plot <- ggplot() +
        geom_point(aes(x=rep(x_axis, nrow(top_names_hit_miss)),
                       y=dbeta(x=rep(x_axis, nrow(top_names_hit_miss)), 
                        shape1 = top_names_hit_miss$alpha, shape2 = top_names_hit_miss$beta 
                        ),color=rep(x_axis, nrow(top_names_hit_miss))), size=0.8) +
        
        labs(color = 'Probability \nColor map', x='P', y='Prior PDF', title=
               'Priors computed') +
        
        theme_bw()
plot

plot <- ggplot() +
        geom_point(aes(x=rep(x_axis, nrow(top_names_hit_miss_w)),
                       y=dbeta(x=rep(x_axis, nrow(top_names_hit_miss_w)), 
                        shape1 = top_names_hit_miss_w$alpha, shape2 = top_names_hit_miss_w$beta 
                        ),color=rep(x_axis, nrow(top_names_hit_miss_w))), size=0.8) +
        
        labs(color = 'Probability \nColor map', x='P', y='Prior PDF', title=
               'Priors computed') +
        
        theme_bw()
plot

We see how here the transition from low percentages to high ones is much smoother than in the men case

The next step is to insert the paramters of our priors into the efficiency_df

# Hits top 10
efficiency_df$Hits_top_ten <- efficiency_df$`Attempts top 10` - efficiency_df$`Misses top 10`
# Hits when not in the top 10
efficiency_df$Hits_no_top_ten <- efficiency_df$`Attempts no top 10` - efficiency_df$`Misses not top 10`
# Values of the alpha parameter of the beta
efficiency_df$alpha_prior <- top_names_hit_miss$alpha
# Values of the beta parameter of the beta
efficiency_df$beta_prior <- top_names_hit_miss$beta
# alpha of the posterior when in the top 10
efficiency_df$alpha_post_10 <- efficiency_df$alpha_prior + efficiency_df$Hits_top_ten
# beta of the posterior when in the top 10
efficiency_df$beta_post_10 <- efficiency_df$beta_prior + 
  efficiency_df$`Attempts top 10` - efficiency_df$Hits_top_ten
# alpha of the posterior when not in the top 10
efficiency_df$alpha_post_no10 <- efficiency_df$alpha_prior + efficiency_df$Hits_no_top_ten
# beta of the posterior when not in the top 10
efficiency_df$beta_post_no10 <- efficiency_df$beta_prior + 
  efficiency_df$`Attempts no top 10` - efficiency_df$Hits_no_top_ten

# Hits top 10
efficiency_df_w$Hits_top_ten <- efficiency_df_w$`Attempts top 10` - efficiency_df_w$`Misses top 10`
# Hits when not in the top 10
efficiency_df_w$Hits_no_top_ten <- efficiency_df_w$`Attempts no top 10` - efficiency_df_w$`Misses not top 10`
# Values of the alpha parameter of the beta
efficiency_df_w$alpha_prior <- top_names_hit_miss_w$alpha
# Values of the beta parameter of the beta
efficiency_df_w$beta_prior <- top_names_hit_miss_w$beta
# alpha of the posterior when in the top 10
efficiency_df_w$alpha_post_10 <- efficiency_df_w$alpha_prior + efficiency_df_w$Hits_top_ten
# beta of the posterior when in the top 10
efficiency_df_w$beta_post_10 <- efficiency_df_w$beta_prior + 
  efficiency_df_w$`Attempts top 10` - efficiency_df_w$Hits_top_ten
# alpha of the posterior when not in the top 10
efficiency_df_w$alpha_post_no10 <- efficiency_df_w$alpha_prior + efficiency_df_w$Hits_no_top_ten
# beta of the posterior when not in the top 10
efficiency_df_w$beta_post_no10 <- efficiency_df_w$beta_prior + 
  efficiency_df_w$`Attempts no top 10` - efficiency_df_w$Hits_no_top_ten


(efficiency_df)
##                      Full Names # Out top 10 # In top 10 Misses top 10
## 1                Anev Krasimir            40           5             6
## 2                Babikov Anton            25           6             5
## 3                Bailey Lowell            33           9            10
## 4       Beatrix Jean Guillaume            21          14            12
## 5           Birnbacher Andreas            12           5             1
## 6          Bjoentegaard Erlend            34          14            17
## 7        Bjoerndalen Ole Einar            22          13             9
## 8        Boe Johannes Thingnes            22          66            65
## 9                   Boe Tarjei            35          49            50
## 10 Christiansen Vetle Sjaastad            23          27            20
## 11               Claude Fabien            33           5             7
## 12               Dale Johannes            14          11            15
## 13             Desthieux Simon            61          25            25
## 14               Doll Benedikt            54          40            52
## 15             Eberhard Julian            56          11            17
## 16                  Eder Simon            47          39            37
## 17              Eliseev Matvey            41           8             9
## 18                   Fak Jakov            37          27            19
## 19      Fillon Maillet Quentin            41          48            30
## 20             Fourcade Martin             8          63            40
## 21              Fourcade Simon            22           9             9
## 22          Garanichev Evgeniy            47          21            24
## 23           Guigonnat Antonin            42          13            15
## 24                 Hofer Lukas            51          30            32
## 25           Jacquelin Emilien            24          24            22
## 26               Krcmar Michal            75           7             4
## 27              Kuehn Johannes            42           5            10
## 28          L'Abee-Lund Henrik            26           9            12
## 29        Laegreid Sturla Holm             7          16             9
## 30        Landertinger Dominik            32          11            16
## 31              Latypov Eduard            19           6             4
## 32               Leitner Felix            36           6             2
## 33                 Lesser Erik            48          29            38
## 34          Lindstroem Fredrik            32          11             5
## 35           Loginov Alexander            31          19            22
## 36              Moravec Ondrej            54          13             8
## 37                Peiffer Arnd            40          40            37
## 38           Pidruchnyi Dmytro            53          11             8
## 39           Ponsiluoma Martin            25           7            11
## 40        Rastorgujevs Andrejs            56          10            16
## 41                  Rees Roman            23           5             8
## 42        Samuelsson Sebastian            38          15            17
## 43               Schempp Simon            27          24            14
## 44              Shipulin Anton            14          37            24
## 45             Slesingr Michal            25          12            11
## 46                Smith Nathan            17           6             7
## 47         Svendsen Emil Hegle            16          22            17
## 48              Tsvetkov Maxim            27          11             9
## 49              Weger Benjamin            59          16            16
## 50            Windisch Dominik            65          10            19
##    Attempts top 10 Misses not top 10 Attempts no top 10 Hits_top_ten
## 1               25                25                200           19
## 2               30                21                125           25
## 3               45                30                165           35
## 4               70                24                105           58
## 5               25                 8                 60           24
## 6               70                34                170           53
## 7               65                18                110           56
## 8              330                21                110          265
## 9              245                31                175          195
## 10             135                11                115          115
## 11              25                48                165           18
## 12              55                16                 70           40
## 13             125                43                305          100
## 14             200                70                270          148
## 15              55                67                280           38
## 16             195                27                235          158
## 17              40                28                205           31
## 18             135                22                185          116
## 19             240                27                205          210
## 20             315                 5                 40          275
## 21              45                16                110           36
## 22             105                32                235           81
## 23              65                53                210           50
## 24             150                52                255          118
## 25             120                22                120           98
## 26              35                68                375           31
## 27              25                75                210           15
## 28              45                26                130           33
## 29              80                 3                 35           71
## 30              55                30                160           39
## 31              30                16                 95           26
## 32              30                35                180           28
## 33             145                45                240          107
## 34              55                23                160           50
## 35              95                33                155           73
## 36              65                34                270           57
## 37             200                24                200          163
## 38              55                48                265           47
## 39              35                25                125           24
## 40              50                72                280           34
## 41              25                19                115           17
## 42              75                37                190           58
## 43             120                26                135          106
## 44             185                 6                 70          161
## 45              60                23                125           49
## 46              30                17                 85           23
## 47             110                15                 80           93
## 48              55                14                135           46
## 49              80                44                295           64
## 50              50                69                325           31
##    Hits_no_top_ten alpha_prior beta_prior alpha_post_10 beta_post_10
## 1              175    7.880571   2.078958      26.88057     8.078958
## 2              104    8.583431   2.599630      33.58343     7.599630
## 3              135    6.022175   2.293135      41.02218    12.293135
## 4               81    5.433172   2.229639      63.43317    14.229639
## 5               52    8.294905   1.917902      32.29491     2.917902
## 6              136    7.373320   2.939706      60.37332    19.939706
## 7               92    6.057590   2.067519      62.05759    11.067519
## 8               89    5.717110   2.088564     270.71711    67.088564
## 9              144    6.633864   2.195062     201.63386    52.195062
## 10             104   11.060462   2.529932     126.06046    22.529932
## 11             117    6.166126   2.722042      24.16613     9.722042
## 12              54   21.900920   8.652249      61.90092    23.652249
## 13             262    9.090843   2.533120     109.09084    27.533120
## 14             200    7.097611   2.907632     155.09761    54.907632
## 15             213    4.938478   2.381644      42.93848    19.381644
## 16             208   10.337954   2.514263     168.33795    39.514263
## 17             177    7.554353   2.298050      38.55435    11.298050
## 18             163   10.109837   2.433193     126.10984    21.433193
## 19             178    7.487475   1.886539     217.48747    31.886539
## 20              35    9.034767   2.049126     284.03477    42.049126
## 21              94   11.250036   2.785991      47.25004    11.785991
## 22             203   10.158629   2.942740      91.15863    26.942740
## 23             157    6.115721   2.397350      56.11572    17.397350
## 24             203    7.551840   2.688828     125.55184    34.688828
## 25              98    5.648498   2.029057     103.64850    24.029057
## 26             307    6.794103   2.448526      37.79410     6.448526
## 27             135    4.968279   3.187137      19.96828    13.187137
## 28             104    7.390630   2.742899      40.39063    14.742899
## 29              32    7.877498   2.031625      78.87750    11.031625
## 30             130   11.321778   3.505865      50.32178    19.505865
## 31              79   10.811770   4.166762      36.81177     8.166762
## 32             145    5.372252   2.175621      33.37225     4.175621
## 33             195    8.255745   2.769980     115.25575    40.769980
## 34             137    7.836427   2.151789      57.83643     7.151789
## 35             122   10.655270   3.413817      83.65527    25.413817
## 36             236    9.090802   2.097058      66.09080    10.097058
## 37             176    7.512674   2.217503     170.51267    39.217503
## 38             217    9.842824   3.189159      56.84282    11.189159
## 39             100    9.047064   3.294544      33.04706    14.294544
## 40             208    6.557814   3.021023      40.55781    19.021023
## 41              96   10.123702   2.747092      27.12370    10.747092
## 42             153    7.872251   2.883261      65.87225    19.883261
## 43             109    6.560986   1.928952     112.56099    15.928952
## 44              64   14.003172   2.668549     175.00317    26.668549
## 45             102    7.551598   2.344465      56.55160    13.344465
## 46              68   10.978772   3.037550      33.97877    10.037550
## 47              65    9.733144   2.702688     102.73314    19.702688
## 48             121    8.956170   2.015179      54.95617    11.015179
## 49             251    7.433278   2.249777      71.43328    18.249777
## 50             256    5.679514   2.413603      36.67951    21.413603
##    alpha_post_no10 beta_post_no10
## 1        182.88057      27.078958
## 2        112.58343      23.599630
## 3        141.02218      32.293135
## 4         86.43317      26.229639
## 5         60.29491       9.917902
## 6        143.37332      36.939706
## 7         98.05759      20.067519
## 8         94.71711      23.088564
## 9        150.63386      33.195062
## 10       115.06046      13.529932
## 11       123.16613      50.722042
## 12        75.90092      24.652249
## 13       271.09084      45.533120
## 14       207.09761      72.907632
## 15       217.93848      69.381644
## 16       218.33795      29.514263
## 17       184.55435      30.298050
## 18       173.10984      24.433193
## 19       185.48747      28.886539
## 20        44.03477       7.049126
## 21       105.25004      18.785991
## 22       213.15863      34.942740
## 23       163.11572      55.397350
## 24       210.55184      54.688828
## 25       103.64850      24.029057
## 26       313.79410      70.448526
## 27       139.96828      78.187137
## 28       111.39063      28.742899
## 29        39.87750       5.031625
## 30       141.32178      33.505865
## 31        89.81177      20.166762
## 32       150.37225      37.175621
## 33       203.25575      47.769980
## 34       144.83643      25.151789
## 35       132.65527      36.413817
## 36       245.09080      36.097058
## 37       183.51267      26.217503
## 38       226.84282      51.189159
## 39       109.04706      28.294544
## 40       214.55781      75.021023
## 41       106.12370      21.747092
## 42       160.87225      39.883261
## 43       115.56099      27.928952
## 44        78.00317       8.668549
## 45       109.55160      25.344465
## 46        78.97877      20.037550
## 47        74.73314      17.702688
## 48       129.95617      16.015179
## 49       258.43328      46.249777
## 50       261.67951      71.413603
efficiency_df_w
##                     Full Names # Out top 10 # In top 10 Misses top 10
## 1          Alimbekava Dzinara            19          12            14
## 2              Aymonier Celia            35           7            11
## 3               Bescond Anais            62          28            24
## 4              Bilosiuk Olena            32           5             2
## 5     Braisaz-Bouchet Justine            50          25            32
## 6               Brorsson Mona            54           9            16
## 7     Chevalier-Bouchet Anais            40          21            18
## 8             Dahlmeier Laura            10          41            21
## 9            Davidova Marketa            31          13            16
## 10           Domracheva Darya             4          25            23
## 11         Dorin Habert Marie            16          26            24
## 12              Dunklee Susan            45          15            17
## 13              Dzhima Yuliia            45          18            16
## 14              Eckhoff Tiril            34          42            49
## 15                 Egan Clare            39           5             8
## 16           Fialkova Paulina            37          18            24
## 17            Gasparin Selina            42           7             5
## 18                Haecki Lena            51           8             7
## 19        Hammerschmidt Maren            31           7            12
## 20        Hauser Lisa Theresa            58          25            19
## 21            Herrmann Denise            34          23            27
## 22       Hildebrand Franziska            42          27            28
## 23               Hinz Vanessa            56          21            22
## 24     Hojnisz-Starega Monika            48          10            13
## 25 Knotten Karoline Offigstad            18           5             3
## 26         Koukalova Gabriela             8          31            20
## 27         Kuzmina Anastasiya            13          17            12
## 28           Leshchanka Iryna            41           9            11
## 29           Makarainen Kaisa            28          45            40
## 30          Mironova Svetlana            27           6            12
## 31            Oberhofer Karin            15           8             4
## 32              Oeberg Elvira            19          12             9
## 33               Oeberg Hanna            21          30            20
## 34               Persson Linn            36          13            14
## 35          Podchufarova Olga            14           6             7
## 36           Preuss Franziska            29          39            31
## 37           Puskarcikova Eva            49           6             6
## 38          Reztsova Kristina             5           6             9
## 39     Roeiseland Marte Olsbu            35          45            35
## 40        Semerenko Valentina            25          16            10
## 41                Simon Julia            28          17            22
## 42          Skardino Nadezhda            27          12             6
## 43                 Sola Hanna            16           6            10
## 44 Tandrevold Ingrid Landmark            35          16            16
## 45           Virolainen Daria            22           6             6
## 46           Vitkova Veronika            35          15            14
## 47              Vittozzi Lisa            51          19            10
## 48            Wierer Dorothea            34          63            61
## 49   Yurlova-Percht Ekaterina            34          11            17
##    Attempts top 10 Misses not top 10 Attempts no top 10 Hits_top_ten
## 1               60                18                 95           46
## 2               35                58                175           24
## 3              140                64                310          116
## 4               25                20                160           23
## 5              125                64                250           93
## 6               45                46                270           29
## 7              105                33                200           87
## 8              205                 6                 50          184
## 9               65                37                155           49
## 10             125                 2                 20          102
## 11             130                13                 80          106
## 12              75                56                225           58
## 13              90                35                225           74
## 14             210                39                170          161
## 15              25                51                195           17
## 16              90                41                185           66
## 17              35                48                210           30
## 18              40                71                255           33
## 19              35                36                155           23
## 20             125                38                290          106
## 21             115                39                170           88
## 22             135                22                210          107
## 23             105                45                280           83
## 24              50                35                240           37
## 25              25                13                 90           22
## 26             155                 4                 40          135
## 27              85                 7                 65           73
## 28              45                27                205           34
## 29             225                24                140          185
## 30              30                37                135           18
## 31              40                14                 75           36
## 32              60                13                 95           51
## 33             150                20                105          130
## 34              65                32                180           51
## 35              30                10                 70           23
## 36             195                16                145          164
## 37              30                35                245           24
## 38              30                 5                 25           21
## 39             225                16                175          190
## 40              80                16                125           70
## 41              85                24                140           63
## 42              60                 7                135           54
## 43              30                20                 80           20
## 44              80                40                175           64
## 45              30                33                110           24
## 46              75                17                175           61
## 47              95                34                255           85
## 48             315                24                170          254
## 49              55                30                170           38
##    Hits_no_top_ten alpha_prior beta_prior alpha_post_10 beta_post_10
## 1               77    6.336627   2.202323      52.33663    16.202323
## 2              117    7.777404   3.839183      31.77740    14.839183
## 3              246    6.706881   2.300204     122.70688    26.300204
## 4              140   13.474729   3.085680      36.47473     5.085680
## 5              186    6.225416   2.578511      99.22542    34.578511
## 6              224    6.300295   2.338245      35.30029    18.338245
## 7              167    6.758608   2.115660      93.75861    20.115660
## 8               44   13.206223   2.239077     197.20622    23.239077
## 9              118    6.918199   2.972733      55.91820    18.972733
## 10              18    7.415090   2.240779     109.41509    25.240779
## 11              67    7.143439   2.490420     113.14344    26.490420
## 12             169    5.093108   2.352269      63.09311    19.352269
## 13             190    5.555717   1.921576      79.55572    17.921576
## 14             131    8.853117   3.437174     169.85312    52.437174
## 15             144   10.294675   4.135893      27.29467    12.135893
## 16             144    4.439965   1.939620      70.43997    25.939620
## 17             162    4.923947   2.096246      34.92395     7.096246
## 18             184    5.766024   2.496680      38.76602     9.496680
## 19             119    8.132265   3.213461      31.13226    15.213461
## 20             252    9.214420   2.401897     115.21442    21.401897
## 21             131    6.782804   2.812123      94.78280    29.812123
## 22             188    7.292056   2.232240     114.29206    30.232240
## 23             235    7.718753   2.585324      90.71875    24.585324
## 24             205    9.858319   3.003890      46.85832    16.003890
## 25              77    7.902619   2.197393      29.90262     5.197393
## 26              36   10.282676   2.090515     145.28268    22.090515
## 27              58   14.273422   3.848143      87.27342    15.848143
## 28             178    8.895222   2.138213      42.89522    13.138213
## 29             116    9.569597   2.891617     194.56960    42.891617
## 30              98    8.052122   3.808896      26.05212    15.808896
## 31              61    8.619727   2.853447      44.61973     6.853447
## 32              82    8.583431   2.599630      59.58343    11.599630
## 33              85    7.834355   2.425174     137.83435    22.425174
## 34             148    7.244805   2.367022      58.24480    16.367022
## 35              60   10.747530   2.653090      33.74753     9.653090
## 36             129   10.976847   2.760620     174.97685    33.760620
## 37             210   13.272164   3.088879      37.27216     9.088879
## 38              20    5.372957   2.286164      26.37296    11.286164
## 39             159    9.826175   2.496837     199.82618    37.496837
## 40             109   10.457721   2.717108      80.45772    12.717108
## 41             116    6.096481   2.400449      69.09648    24.400449
## 42             128   12.451303   1.954275      66.45130     7.954275
## 43              60    5.964075   3.081709      25.96408    13.081709
## 44             135    5.171848   2.283646      69.17185    18.283646
## 45              77    8.903832   3.584666      32.90383     9.584666
## 46             158   15.581249   3.452920      76.58125    17.452920
## 47             221   10.650802   2.280527      95.65080    12.280527
## 48             146    8.710212   2.591909     262.71021    63.591909
## 49             140    6.735228   2.789124      44.73523    19.789124
##    alpha_post_no10 beta_post_no10
## 1         83.33663      20.202323
## 2        124.77740      61.839183
## 3        252.70688      66.300204
## 4        153.47473      23.085680
## 5        192.22542      66.578511
## 6        230.30029      48.338245
## 7        173.75861      35.115660
## 8         57.20622       8.239077
## 9        124.91820      39.972733
## 10        25.41509       4.240779
## 11        74.14344      15.490420
## 12       174.09311      58.352269
## 13       195.55572      36.921576
## 14       139.85312      42.437174
## 15       154.29467      55.135893
## 16       148.43997      42.939620
## 17       166.92395      50.096246
## 18       189.76602      73.496680
## 19       127.13226      39.213461
## 20       261.21442      40.401897
## 21       137.78280      41.812123
## 22       195.29206      24.232240
## 23       242.71875      47.585324
## 24       214.85832      38.003890
## 25        84.90262      15.197393
## 26        46.28268       6.090515
## 27        72.27342      10.848143
## 28       186.89522      29.138213
## 29       125.56960      26.891617
## 30       106.05212      40.808896
## 31        69.61973      16.853447
## 32        90.58343      15.599630
## 33        92.83435      22.425174
## 34       155.24480      34.367022
## 35        70.74753      12.653090
## 36       139.97685      18.760620
## 37       223.27216      38.088879
## 38        25.37296       7.286164
## 39       168.82618      18.496837
## 40       119.45772      18.717108
## 41       122.09648      26.400449
## 42       140.45130       8.954275
## 43        65.96408      23.081709
## 44       140.17185      42.283646
## 45        85.90383      36.584666
## 46       173.58125      20.452920
## 47       231.65080      36.280527
## 48       154.71021      26.591909
## 49       146.73523      32.789124
# Function to compute the mode of the beta
mode_beta <- function(alpha, beta){
  return( (alpha - 1)/(alpha + beta - 2) )
}
efficiency_df$mode_post_no10 <- mode_beta(efficiency_df$alpha_post_no10, efficiency_df$beta_post_no10)
efficiency_df$mode_post_10 <- mode_beta(efficiency_df$alpha_post_10, efficiency_df$beta_post_10)

efficiency_df_w$mode_post_no10 <- mode_beta(efficiency_df_w$alpha_post_no10, efficiency_df_w$beta_post_no10)
efficiency_df_w$mode_post_10 <- mode_beta(efficiency_df_w$alpha_post_10, efficiency_df_w$beta_post_10)
efficiency_df$mode_eff <- (efficiency_df$mode_post_no10 - efficiency_df$mode_post_10)/
                          efficiency_df$mode_post_no10
max_eff <- efficiency_df[which.max(efficiency_df$mode_eff),]
min_eff <- efficiency_df[which.min(efficiency_df$mode_eff),]



efficiency_df_w$mode_eff <- (efficiency_df_w$mode_post_no10 - efficiency_df_w$mode_post_10)/
                          efficiency_df_w$mode_post_no10
max_eff_w <- efficiency_df_w[which.max(efficiency_df_w$mode_eff),]
min_eff_w <- efficiency_df_w[which.min(efficiency_df_w$mode_eff),]
efficiency_list <- list()
for (athlete in efficiency_df$`Full Names`){
  efficiency_list[[athlete]] <- 100*(rbeta(n = 10000, shape1 = 
                                     efficiency_df[efficiency_df$`Full Names`==athlete,]$alpha_post_no10, 
                                     shape2 =
                                       efficiency_df[efficiency_df$`Full Names`==athlete,]$beta_post_no10) -
                            rbeta(n = 10000, shape1 = 
                                     efficiency_df[efficiency_df$`Full Names`==athlete,]$alpha_post_10, 
                                     shape2 =
                                       efficiency_df[efficiency_df$`Full Names`==athlete,]$beta_post_10))/
                            (rbeta(n = 10000, shape1 = 
                                     efficiency_df[efficiency_df$`Full Names`==athlete,]$alpha_post_no10, 
                                     shape2 =
                                       efficiency_df[efficiency_df$`Full Names`==athlete,]$beta_post_no10))
                                       
}



efficiency_list_w <- list()
for (athlete in efficiency_df_w$`Full Names`){
  efficiency_list_w[[athlete]] <- 100*(rbeta(n = 10000, shape1 = 
                                     efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$alpha_post_no10, 
                                     shape2 =
                                       efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$beta_post_no10) -
                            rbeta(n = 10000, shape1 = 
                                     efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$alpha_post_10, 
                                     shape2 =
                                       efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$beta_post_10))/
                            (rbeta(n = 10000, shape1 = 
                                     efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$alpha_post_no10, 
                                     shape2 =
                                       efficiency_df_w[efficiency_df_w$`Full Names`==athlete,]$beta_post_no10))
                                       
}
bins_fd <- function(vec) {
  diff(range(vec)) / (2 * IQR(vec) / length(vec)^(1/3))
}
plot <- ggplot() +
        geom_histogram(aes(efficiency_list[['Fourcade Martin ']], y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(efficiency_list[['Fourcade Martin ']])) +
        geom_histogram(aes(efficiency_list[['Anev Krasimir ']], y=..density..), 
                       fill='navy', alpha=0.9, color='black', 
                       bins=bins_fd(efficiency_list[['Anev Krasimir ']])) +
        theme_bw()
plot

Here we can see how Martin Fourcade (red histogram), who appeared the most percentually in the top 10, has a perfect 0 “efficiency”. A sympton that he was a cold blooded shooter in the clutch. Krasimir (blue histogram) instead maybe lacking a little bit of experience sow his percentages drop considerably… maybe being in thick of things made his rifle tremble with a 10% “efficiency”.

plot <- ggplot() +
        geom_histogram(aes(efficiency_list_w[['Domracheva Darya ']], y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(efficiency_list_w[['Domracheva Darya ']])) +
        geom_histogram(aes(efficiency_list_w[['Puskarcikova Eva ']], y=..density..), 
                       fill='navy', alpha=0.9, color='black', 
                       bins=bins_fd(efficiency_list_w[['Puskarcikova Eva ']])) +
        theme_bw()
plot

The biggest difference we notice is how Darya Domracheva (blue histogram) is not perfect like Martin Fourcade as her efficiency deviates from zero. Eva Puskarcikova (red histogram) less used to shooting for high stakes does perform worse but the difference is much smaller… maybe Thomas Bormolini has something to do with it.

plot <- ggplot() +
        geom_histogram(aes(efficiency_list[[min_eff$`Full Names`]], y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(efficiency_list[[min_eff$`Full Names`]])) +
        geom_histogram(aes(efficiency_list[[max_eff$`Full Names`]], y=..density..), 
                       fill='navy', alpha=0.9, color='black', 
                       bins=bins_fd(efficiency_list[[max_eff$`Full Names`]])) +
        theme_bw()
plot

In the above plot we see how Felix Leitner (red histogram) even improved his accuracy in meaningful shootings while Domink Windisch (blue histogram) was the one who suffered the most in this situation (again Oestersund 2019 is not counted). We all know that Dominik is not the most consistent but when we talk about single races in big events he gifted us all great memories.

plot <- ggplot() +
        geom_histogram(aes(efficiency_list_w[[min_eff_w$`Full Names`]], y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(efficiency_list_w[[min_eff_w$`Full Names`]])) +
        geom_histogram(aes(efficiency_list_w[[max_eff_w$`Full Names`]], y=..density..), 
                       fill='navy', alpha=0.9, color='black', 
                       bins=bins_fd(efficiency_list_w[[max_eff_w$`Full Names`]])) +
        theme_bw()
plot

min_eff_w$`Full Names`
## [1] Haecki Lena 
## 49 Levels: Alimbekava Dzinara  Aymonier Celia  ... Yurlova-Percht Ekaterina
max_eff_w$`Full Names`
## [1] Brorsson Mona 
## 49 Levels: Alimbekava Dzinara  Aymonier Celia  ... Yurlova-Percht Ekaterina

Laena Hacki here takes the prize of having the coldest blood while Mona Brorsson which is known for her podium-loosing last shots is indeed the biathlete with the highest “efficiency”

names_ordered <- names(named_percentages[rev(order_perc)])


plot <- ggplot() +
        geom_density(aes(efficiency_list[[names_ordered[1]]], y=..density..,
                           color=names_ordered[1]) 
                       , alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[6]]], y=..density..,
                          color= names_ordered[6]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[7]]], y=..density..,
                           color =  names_ordered[7]) 
                       , alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[14]]], y=..density..,
                           color= names_ordered[14]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[9]]], y=..density..,
                           color= names_ordered[9]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[11]]], y=..density..,
                           color= names_ordered[11]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list[[names_ordered[12]]], y=..density..,
                           color= names_ordered[12]), 
                        alpha=0.5, lwd=1) +
        labs(x='Effciency', y='PDF') +
  
        theme_bw()
plot

In this density estimate plot the each biathlete represented has a meaningful statistics regarding both the presences in the top 10 and the presences outside of it. We can see how Emil Svendsen noticeably improves with an efficiency of almost -10%, while Christiansen who is notoriously doesn’t posses the heart of a lion ruins his percentages. Simon Eder who is going to become the athlete with the most 0s in history has an almost dramatic drop for his standards in standing shooting when entering the last shooting range in the top 10. In Vetle’s defense in the Beijiing olympics he pulled out a couple of rabbits from his hat by winning the relay on the last shot and likewise the mass start bronze.

names_ordered_w <- names(named_percentages_w[rev(order_perc_w)])


plot <- ggplot() +
        geom_density(aes(efficiency_list_w[[names_ordered_w[1]]], y=..density..,
                           color=names_ordered_w[1]) 
                       , alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[6]]], y=..density..,
                          color= names_ordered_w[6]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[33]]], y=..density..,
                           color =  names_ordered_w[33]) 
                       , alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[4]]], y=..density..,
                           color= names_ordered_w[4]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[45]]], y=..density..,
                           color= names_ordered_w[45]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[18]]], y=..density..,
                           color= names_ordered_w[18]), 
                        alpha=0.5, lwd=1) +
        geom_density(aes(efficiency_list_w[[names_ordered_w[12]]], y=..density..,
                           color= names_ordered_w[12]), 
                        alpha=0.5, lwd=1) +
        labs(x='Effciency', y='PDF') +
  
        theme_bw()
plot

In this set of highly represented athletes we see how consistent are the 2 italians with Lisa that improves her performance and with Dorothea that slightly makes it worse (in terms of “efficiency”). We can see how respecting her family traditions Kristina Reztsova has a very high “efficiency” volatility, she performs good on skis but she isn’t quite the cross country skier lend to biathlon like her mother Anfisa was.

Confronting men and women

# Analytical part

# Computing the total attempts
top_names_tot_att10 <- sum(efficiency_df$`Attempts top 10`)
top_names_tot_att10_w <- sum(efficiency_df_w$`Attempts top 10`)

# Computing the total hits
top_names_tot_hit10 <- sum(efficiency_df$Hits_top_ten)
top_names_tot_hit10_w <- sum(efficiency_df_w$Hits_top_ten)

# Computing the total attempts outside the top 10
top_names_tot_att_no10 <- sum(efficiency_df$`Attempts no top 10`)
top_names_tot_att_no10_w <- sum(efficiency_df_w$`Attempts no top 10`)

# Computing the total hits outside the top 10
top_names_tot_hit_no10 <- sum(efficiency_df$Hits_no_top_ten)
top_names_tot_hit_no10_w <- sum(efficiency_df_w$Hits_no_top_ten)

# Computing the desired mode for teh prior
mode_men <- (top_names_tot_hit10 + top_names_tot_hit_no10)/
  (top_names_tot_att10 + top_names_tot_att_no10)
mode_women <- (top_names_tot_hit10_w + top_names_tot_hit_no10_w)/
  (top_names_tot_att10_w + top_names_tot_att_no10_w)

# Computing the desired standard deviation for the prior
std_men <- sd(hit_miss$Probabilities)
std_women <- sd(hit_miss_w$Probabilities)

# Computing the alpha prior
alpha_prior_men <- unlist(map2(.x= mode_men, .y=std_men^2, .f=root_func))
alpha_prior_women <- unlist(map2(.x= mode_women, .y=std_women^2, .f=root_func))

# Computing the beta prior
beta_prior_men <- beta(mode = mode_men, alpha = alpha_prior_men)
beta_prior_women <- beta(mode = mode_women, alpha = alpha_prior_women)

# Computing the alpha posterior
alpha_post_men_10 <- alpha_prior_men + top_names_tot_hit10
alpha_post_women_10 <- alpha_prior_women + top_names_tot_hit10_w

# Computing the alpha posterior outside the top 10 
alpha_post_men_no10 <- alpha_prior_men + top_names_tot_hit_no10
alpha_post_women_no10 <- alpha_prior_women + top_names_tot_hit_no10_w

# Computing the beta posterior
beta_post_men_10 <- beta_prior_men + top_names_tot_att10 - top_names_tot_hit10
beta_post_women_10 <- beta_prior_women + top_names_tot_att10_w - top_names_tot_hit10_w

# Computing the beta posterior outside the top 10
beta_post_men_no10 <- beta_prior_men + top_names_tot_att_no10 - top_names_tot_hit_no10
beta_post_women_no10 <- beta_prior_women + top_names_tot_att_no10_w - top_names_tot_hit_no10_w

# Mean of the beta distribution posterior
mean_10_men <- alpha_post_men_10/(alpha_post_men_10+beta_post_men_10)
mean_10_women <- alpha_post_women_10/(alpha_post_women_10+beta_post_women_10)

# Variance of the beta distribution posterior
var_10_men <- (alpha_post_men_10*beta_post_men_10)/( (alpha_post_men_10 + beta_post_men_10)^2*
                                               (alpha_post_men_10 + beta_post_men_10 + 1))
var_10_women <- (alpha_post_women_10*beta_post_women_10)/( (alpha_post_women_10 + beta_post_women_10)^2*
                                               (alpha_post_women_10 + beta_post_women_10 + 1))

# Variance of the beta distribution posterior outside the top 10
var_no10_men <- (alpha_post_men_no10*beta_post_men_no10)/( (alpha_post_men_no10 + beta_post_men_no10)^2*
                                               (alpha_post_men_no10 + beta_post_men_no10 + 1))
var_no10_women <- (alpha_post_women_no10*beta_post_women_no10)/
  ( (alpha_post_women_no10 + beta_post_women_no10)^2*
                                               (alpha_post_women_no10 + beta_post_women_no10 + 1))
# Defining the Jags arrays
n_samples <- 2000
jags_men_10 <- 100*(rbeta(n = n_samples, shape1 = alpha_post_men_no10, shape2 = beta_post_men_no10) -
                  rbeta(n = n_samples, shape1 = alpha_post_men_10, shape2 = beta_post_men_10))/
                rbeta(n = n_samples, shape1 = alpha_post_men_no10, shape2 = beta_post_men_no10)


jags_women_10 <- 100*(rbeta(n = n_samples, shape1 = alpha_post_women_no10, shape2 = beta_post_women_no10) -
                  rbeta(n = n_samples, shape1 = alpha_post_women_10, shape2 = beta_post_women_10))/
                rbeta(n = n_samples, shape1 = alpha_post_women_no10, shape2 = beta_post_women_no10)

jags_total <- jags_men_10 - jags_women_10
# Defining the Jags model
data <- list(X = jags_total, n = n_samples)
model <- jags.model(file = 'normal.bug', n.chains = 4, data = data)
## Compiling model graph
##    Resolving undeclared variables
##    Allocating nodes
## Graph information:
##    Observed stochastic nodes: 2000
##    Unobserved stochastic nodes: 2
##    Total graph size: 2010
## 
## Initializing model
update(model, 1000)

chain <- coda.samples(model = model, c('mean', 'precision'),  n.iter=10000)
print(summary(chain))
## 
## Iterations = 2001:12000
## Thinning interval = 1 
## Number of chains = 4 
## Sample size per chain = 10000 
## 
## 1. Empirical mean and standard deviation for each variable,
##    plus standard error of the mean:
## 
##              Mean      SD  Naive SE Time-series SE
## mean      -0.1402 0.02721 0.0001360      0.0001370
## precision  0.6770 0.02149 0.0001075      0.0001371
## 
## 2. Quantiles for each variable:
## 
##              2.5%     25%     50%     75%    97.5%
## mean      -0.1935 -0.1584 -0.1401 -0.1218 -0.08737
## precision  0.6351  0.6624  0.6767  0.6915  0.71973
# Flattening the Jags chains
mean_jags <- c(unname(chain[[1]])[,1], unname(chain[[2]])[,1], unname(chain[[3]])[,1], unname(chain[[4]])[,1])
precision_jags <- c(unname(chain[[1]])[,2], 
                    unname(chain[[2]])[,2], unname(chain[[3]])[,2], unname(chain[[4]])[,2])
# Plot of the mean parameter
plot <- ggplot() +
        geom_histogram(aes(mean_jags, y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(mean_jags)) +
        theme_bw()

plot

results_plot <- ggplot_build(plot)$data[[1]]

y_max_idx <- which.max(ggplot_build(plot)$data[[1]]$y)

mean_max <- (ggplot_build(plot)$data[[1]]$xmax[y_max_idx] + ggplot_build(plot)$data[[1]]$xmin[y_max_idx])/2
# Plot of the precision paramters
plot <- ggplot() +
        geom_histogram(aes(precision_jags, y=..density..), 
                       fill='firebrick', alpha=0.9, color='black', 
                       bins = bins_fd(mean_jags)) +
        theme_bw()

plot

results_plot <- ggplot_build(plot)$data[[1]]

y_max_idx <- which.max(ggplot_build(plot)$data[[1]]$y)

precision_max <- (ggplot_build(plot)$data[[1]]$xmax[y_max_idx] +
                    ggplot_build(plot)$data[[1]]$xmin[y_max_idx])/2 
# Standard deviation given by the posterior
std_max <- sqrt(1/precision_max)
std_max
## [1] 1.216857
# Normal given our retrieved meanand variance 
x_axis <- seq(-5, 5, 0.001)
plot <- ggplot() +
        geom_line(aes(x=x_axis, y=dnorm(x = x_axis, mean = mean_max, sd = std_max))) +
        geom_vline(xintercept = 0) +
        geom_vline(xintercept = mean_max) +
        theme_bw()
plot

# Visual representation of the chains
plot(chain)

Hypothesis testing

# Selecting the years were we have shooting data
years_shooting <-years[3:length(years)]
# Importing thr shooting data for women
df_shooting_women <- data.frame()



for (i in seq_along(years_shooting)){
  for(j in seq_along(locations[[years_shooting[i]]])){
    files <- list.files(locations_path_women[[years_shooting[i]]],
                  pattern=sprintf('shooting.%s',locations[[years_shooting[i]]][j]),full.names = TRUE )
    # Importing the data frame
    for (file in files){
      
      # Updating the race_id that will act as our primary key of the data set
      race_id <- race_id + 1
      
      list_id_women[[file]] <- race_id
      
      df_res <- read.csv(file = file, sep = '\t')
      
      # Raising a flag if the Rank column has not allowable columns
      if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
      
      # Updating the count of bibs > 120
      res_over_women <- res_over_women + length(df_res$Rank[destring(df_res$Rank) > 120]
             [! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
      
     
      
      # Checking for possible inconsistencies in the data set
      if('Rank' %!in% colnames(df_res)){
        cat(paste('There is a mistake in', file))
      }
      # Adding the isolated.pursuit column to the non-pursuit races in order to have the same
      # columns to perform the rbind operation
      

      # Adding the column specifying the year of the race
      df_res$year <- rep(years[i], nrow(df_res))
      # Adding the column specifying the venue of the race
      df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
      
      # Adding the column specifying the type of the race
      if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Pursuit', nrow(df_res))
      }
      else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Individual', nrow(df_res))
      }
      else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Mass start', nrow(df_res))
      }
      else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Sprint', nrow(df_res))
        df_res$Shooting.3 <- rep(0, nrow(df_res))
        df_res$Shooting.4 <- rep(0, nrow(df_res))
        df_res$Lane.2 <- rep(0, nrow(df_res))
        df_res$Lane.3 <- rep(0, nrow(df_res))
        df_res$Time.2 <- rep(0, nrow(df_res))
        df_res$Time.3 <- rep(0, nrow(df_res))
        
      }
      else{
        cat(paste('There is a mistake in',file,
                  'no race type specified'))
      }
      
      # Filling the list as we did for the men, popping out the disqualified is due to the 
      # Glaryzina affair
      # Adding the column with the id of the race
      df_res$ID <-rep( list_id_women[[paste(df_res$race_type[1], years_shooting[i],
                                             locations[[years_shooting[i]]][j], 
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][1],  
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][2])]], nrow(df_res))
      
      
      # Updating the final data frame
      
      df_shooting_women <- rbind(df_shooting_women, df_res)
    }
  }
}
head(df_shooting_women)
##   Rank Bib       Family.Name Given.Name Nation Lane
## 1    1  15         Dahlmeier      Laura    GER    4
## 2    2  32 Chevalier-Bouchet      Anais    FRA    4
## 3    3  59       Runggaldier     Alexia    ITA    9
## 4    4  24      Dorin Habert      Marie    FRA    4
## 5    5  42     Hammerschmidt      Maren    GER    5
## 6    6  11              Hinz    Vanessa    GER    5
##                                 Shooting.1 Time Lane.1
## 1 14.1s  3.7s  2.9s  \n2.9s  2.9s  \n02345   31     30
## 2 15.7s  \n2.6s  3.0s  2.7s  2.6s  \n54321   31     30
## 3 15.9s  2.5s  2.6s  \n2.4s  6.8s  \n12345   33     22
## 4 20.0s  2.7s  2.7s  \n2.4s  2.4s  \n54321   37     30
## 5 17.1s  2.6s  2.9s  \n2.7s  2.8s  \n12345   33     27
## 6 13.9s  2.6s  2.7s  2.8s  \n3.1s  \n04321   29     17
##                                 Shooting.2 Time.1 Lane.2
## 1  16.4s  5.3s  13.6s  4.4s  5.0s  \n54301   48.0      4
## 2   12.4s  2.4s  2.5s  2.0s  2.5s  \n50321   25.0      4
## 3   14.9s  2.6s  2.4s  2.6s  3.0s  \n04321   28.0      9
## 4   15.8s  7.5s  4.3s  5.4s  3.9s  \n04021   41.0      4
## 5 13.5s  20.6s  3.1s  3.2s  15.1s  \n00321   58.0      5
## 6   14.7s  3.4s  3.8s  3.8s  4.4s  \n54321   33.0      5
##                               Shooting.3 Time.2 Lane.3
## 1 17.4s  4.2s  3.2s  8.6s  2.8s  \n12345     40     30
## 2 18.5s  2.5s  6.1s  2.5s  2.5s  \n54321     36     30
## 3 25.7s  2.6s  2.5s  3.3s  2.7s  \n12345     41     21
## 4 22.3s  3.7s  2.7s  2.5s  2.5s  \n54321     37     30
## 5 16.8s  5.0s  3.6s  3.6s  3.4s  \n12345     36     29
## 6 15.8s  2.8s  2.8s  4.5s  4.9s  \n04321     34     27
##                                Shooting.4 Time.3      year   location
## 1 23.9s  8.8s  3.9s  12.9s  7.7s  \n54321   59.0 2014-2015 Anterselva
## 2  14.6s  2.1s  2.4s  2.2s  2.0s  \n54321   26.0 2014-2015 Anterselva
## 3  14.9s  2.4s  2.1s  8.7s  3.9s  \n54321   35.0 2014-2015 Anterselva
## 4  19.0s  5.2s  9.8s  7.4s  5.8s  \n54321   51.0 2014-2015 Anterselva
## 5  15.6s  3.9s  3.9s  4.4s  3.7s  \n54321   34.0 2014-2015 Anterselva
## 6  17.8s  9.6s  3.4s  4.0s  5.2s  \n50321   43.0 2014-2015 Anterselva
##    race_type ID
## 1 Individual 51
## 2 Individual 51
## 3 Individual 51
## 4 Individual 51
## 5 Individual 51
## 6 Individual 51
# Importing the shooting data for women
df_shooting_men <- data.frame()



for (i in seq_along(years_shooting)){
  for(j in seq_along(locations[[years_shooting[i]]])){
    files <- list.files(locations_path_men[[years_shooting[i]]],
                  pattern=sprintf('shooting.%s',locations[[years_shooting[i]]][j]),full.names = TRUE )
    # Importing the data frame
    for (file in files){
      # Updating the race_id that will act as our primary key of the data set
      race_id <- race_id + 1
      
      list_id_men[[file]] <- race_id
      
      df_res <- read.csv(file = file, sep = '\t')
      
      # Raising a flag if the Rank column has not allowable columns
      if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
      
      # Updating the count of bibs > 120
      res_over_men <- res_over_men + length(df_res$Rank[destring(df_res$Rank) > 120]
             [! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
      
     
      
      # Checking for possible inconsistencies in the data set
      if('Rank' %!in% colnames(df_res)){
        cat(paste('There is a mistake in', file))
      }
      # Adding the isolated.pursuit column to the non-pursuit races in order to have the same
      # columns to perform the rbind operation
      

      # Adding the column specifying the year of the race
      df_res$year <- rep(years[i], nrow(df_res))
      # Adding the column specifying the venue of the race
      df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
      
      # Adding the column specifying the type of the race
      if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Pursuit', nrow(df_res))
      }
      else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Individual', nrow(df_res))
      }
      else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Mass start', nrow(df_res))
      }
      else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
        df_res$race_type <- rep('Sprint', nrow(df_res))
        df_res$Shooting.3 <- rep(0, nrow(df_res))
        df_res$Shooting.4 <- rep(0, nrow(df_res))
        df_res$Lane.2 <- rep(0, nrow(df_res))
        df_res$Lane.3 <- rep(0, nrow(df_res))
        df_res$Time.2 <- rep(0, nrow(df_res))
        df_res$Time.3 <- rep(0, nrow(df_res))
        
      }
      else{
        cat(paste('There is a mistake in',file,
                  'no race type specified'))
      }
      
      # Filling the list as we did for the men, popping out the disqualified is due to the 
      # Glaryzina affair
      # Adding the column with the id of the race
      df_res$ID <-rep( list_id_men[[paste(df_res$race_type[1], years_shooting[i],
                                             locations[[years_shooting[i]]][j], 
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][1],  
                         df_res$Given.Name[df_res$Rank %!in% c('DSQ')][2])]], nrow(df_res))
      
      
      # Updating the final data frame
      
      df_shooting_men <- rbind(df_shooting_men, df_res)
    }
  }
}
# Restricting to individual competition
shooting_ind_men <- df_shooting_men[df_shooting_men$race_type == 'Individual',]
shooting_ind_women <- df_shooting_women[df_shooting_women$race_type == 'Individual',]
# The function to extract the outcome of the last shot
last_shot <- function(x){
  string <- unlist(strsplit((x),""))
  shots <- string[seq(length(string)-4, length(string))]
  if (5 %in% as.numeric(shots)){
    return('Hit')
  }
  else{return('Miss')}
}
# Applying the last shot function
shooting_ind_men$last_shot <- sapply(X = shooting_ind_men$Shooting.4, FUN = last_shot)
shooting_ind_women$last_shot <- sapply(X = shooting_ind_women$Shooting.4, FUN = last_shot)
# The function to extract the outcome the first 19 shots
hits_19 <- function(shooting1, shooting2, shooting3, shooting4){
  string_1 <- unlist(strsplit((shooting1),""))
  string_2 <- unlist(strsplit((shooting2),""))
  string_3 <- unlist(strsplit((shooting3),""))
  string_4 <- unlist(strsplit((shooting4),""))
  shots_1 <- string_1[seq(length(string_1)-4, length(string_1))]
  shots_2 <- string_2[seq(length(string_2)-4, length(string_2))]
  shots_3 <- string_3[seq(length(string_3)-4, length(string_3))]
  shots_4 <- string_4[seq(length(string_4)-4, length(string_4))]
  shots_4 <- shots_4[shots_4 != 5]
  
  shots_1 <- shots_1[shots_1 != 0]
  shots_2 <- shots_2[shots_2 != 0]
  shots_3 <- shots_3[shots_3 != 0]
  shots_4 <- shots_4[shots_4 != 0]
  return(length(as.numeric(shots_1)) +
           length(as.numeric(shots_2)) +
           length(as.numeric(shots_3)) +
           length(as.numeric(shots_4)))
}
# Defining the lists that the pmap function takes in input
list_men_19 <- list(shooting1 = shooting_ind_men$Shooting.1,
                    shooting2 = shooting_ind_men$Shooting.2,
                    shooting3 = shooting_ind_men$Shooting.3,
                    shooting4 = shooting_ind_men$Shooting.4)

list_women_19 <- list(shooting1 = shooting_ind_women$Shooting.1,
                    shooting2 = shooting_ind_women$Shooting.2,
                    shooting3 = shooting_ind_women$Shooting.3,
                    shooting4 = shooting_ind_women$Shooting.4)

# Calling the pmap function to retrieve the outpu of the first 19 shots
shooting_ind_men$shots_19 <- unlist(pmap(.l = list_men_19, .f = hits_19))
shooting_ind_women$shots_19 <- unlist(pmap(.l = list_women_19, .f = hits_19))
# Restricting the analysis to perfect shots through the first 19 attempts
under_pressure_women <- shooting_ind_women[shooting_ind_women$shots_19==19,]
under_pressure_men <- shooting_ind_men[shooting_ind_men$shots_19==19,]
head(under_pressure_men)
##     Rank Bib Family.Name Given.Name Nation Lane
## 3      3  16     Semenov     Sergii    UKR    9
## 7      7  40    Tsvetkov      Maxim    RUS    3
## 35    35  67       Oblak     Lenart    SLO   12
## 136    1 100      Bailey     Lowell    USA   13
## 137    2  51     Moravec     Ondrej    CZE    8
## 141    6  67      Krcmar     Michal    CZE    9
##                                 Shooting.1 Time Lane.1
## 3   15.5s  2.2s  2.9s  2.4s  2.9s  \n54321   28     17
## 7   13.4s  2.6s  2.5s  2.4s  2.2s  \n54321   25     24
## 35  15.9s  3.0s  6.1s  3.4s  3.3s  \n54321   35     20
## 136 13.1s  2.4s  2.5s  2.0s  2.7s  \n12345   25     17
## 137 16.4s  3.0s  3.1s  3.0s  3.2s  \n54321   32     19
## 141 18.3s  3.2s  3.2s  3.2s  3.1s  \n54321   35     20
##                                 Shooting.2 Time.1 Lane.2
## 3   12.1s  2.4s  2.7s  3.1s  2.8s  \n54321   26.0      9
## 7   14.1s  2.2s  3.0s  3.6s  2.2s  \n54321   28.0      3
## 35  15.8s  3.3s  2.2s  2.5s  3.2s  \n12345   31.0     12
## 136 12.2s  2.4s  2.1s  2.5s  2.4s  \n12345     23     13
## 137 13.7s  1.9s  2.1s  1.5s  3.4s  \n54321     24      8
## 141 14.1s  3.1s  2.6s  3.1s  4.8s  \n54321     30      9
##                                 Shooting.3 Time.2 Lane.3
## 3   17.9s  3.0s  2.6s  3.1s  2.8s  \n54321   32.0     17
## 7   17.0s  3.0s  3.9s  2.1s  2.1s  \n54321   31.0     23
## 35  18.4s  3.9s  4.0s  3.2s  3.2s  \n54321   36.0     18
## 136 13.9s  2.5s  2.2s  2.6s  2.8s  \n12345     27     19
## 137 16.9s  2.6s  4.3s  2.6s  3.7s  \n54321     32     17
## 141 19.6s  3.2s  3.0s  4.4s  3.4s  \n54321     36     20
##                                 Shooting.4 Time.3      year   location
## 3   12.8s  2.9s  2.6s  2.6s  3.2s  \n04321     26 2014-2015 Anterselva
## 7   11.4s  2.5s  1.8s  6.5s  2.7s  \n04321     26 2014-2015 Anterselva
## 35  16.1s  3.4s  3.3s  3.1s  2.2s  \n12345     32 2014-2015 Anterselva
## 136 12.2s  2.4s  3.0s  2.4s  2.5s  \n12345     24 2014-2015 Hochfilzen
## 137 13.1s  2.0s  1.5s  1.5s  2.1s  \n54321     22 2014-2015 Hochfilzen
## 141 15.2s  2.8s  2.5s  2.5s  6.2s  \n54321     31 2014-2015 Hochfilzen
##      race_type ID last_shot shots_19
## 3   Individual 51      Miss       19
## 7   Individual 51      Miss       19
## 35  Individual 51       Hit       19
## 136 Individual 53       Hit       19
## 137 Individual 53       Hit       19
## 141 Individual 53       Hit       19
# Doing the same thing of the individuals for the remaining 4 range races
shoothing_pursuit_men <- df_shooting_men[df_shooting_men$race_type == 'Pursuit',]
shoothing_pursuit_women <- df_shooting_women[df_shooting_women$race_type == 'Pursuit',]
shoothing_pursuit_men$last_shot <- sapply(X = shoothing_pursuit_men$Shooting.4, FUN = last_shot)
shoothing_pursuit_women$last_shot <- sapply(X = shoothing_pursuit_women$Shooting.4, FUN = last_shot)

list_men_19_p <- list(shooting1 = shoothing_pursuit_men$Shooting.1,
                    shooting2 = shoothing_pursuit_men$Shooting.2,
                    shooting3 = shoothing_pursuit_men$Shooting.3,
                    shooting4 = shoothing_pursuit_men$Shooting.4)

list_women_19_p <- list(shooting1 = shoothing_pursuit_women$Shooting.1,
                    shooting2 = shoothing_pursuit_women$Shooting.2,
                    shooting3 = shoothing_pursuit_women$Shooting.3,
                    shooting4 = shoothing_pursuit_women$Shooting.4)

shoothing_pursuit_men$shots_19 <- unlist(pmap(.l = list_men_19_p, .f = hits_19))
shoothing_pursuit_women$shots_19 <- unlist(pmap(.l = list_women_19_p, .f = hits_19))
shoothing_pursuit_women <- shoothing_pursuit_women[shoothing_pursuit_women$shots_19==19,]
shoothing_pursuit_men <- shoothing_pursuit_men[shoothing_pursuit_men$shots_19==19,]

shoothing_mass_start_men <- df_shooting_men[df_shooting_men$race_type == 'Mass start',]
shoothing_mass_start_women <- df_shooting_women[df_shooting_women$race_type == 'Mass start',]
shoothing_mass_start_men$last_shot <- sapply(X = shoothing_mass_start_men$Shooting.4, FUN = last_shot)
shoothing_mass_start_women$last_shot <- sapply(X = shoothing_mass_start_women$Shooting.4, 
                                               FUN = last_shot)



list_men_19_m <- list(shooting1 = shoothing_mass_start_men$Shooting.1,
                    shooting2 = shoothing_mass_start_men$Shooting.2,
                    shooting3 = shoothing_mass_start_men$Shooting.3,
                    shooting4 = shoothing_mass_start_men$Shooting.4)

list_women_19_m <- list(shooting1 = shoothing_mass_start_women$Shooting.1,
                    shooting2 = shoothing_mass_start_women$Shooting.2,
                    shooting3 = shoothing_mass_start_women$Shooting.3,
                    shooting4 = shoothing_mass_start_women$Shooting.4)

shoothing_mass_start_men$shots_19 <- unlist(pmap(.l = list_men_19_m, .f = hits_19))
shoothing_mass_start_women$shots_19 <- unlist(pmap(.l = list_women_19_m, .f = hits_19))
shoothing_mass_start_women <- shoothing_mass_start_women[shoothing_mass_start_women$shots_19==19,]
shoothing_mass_start_men <- shoothing_mass_start_men[shoothing_mass_start_men$shots_19==19,]


df_pressure_m <- rbind(shoothing_pursuit_men, shoothing_mass_start_men)
df_pressure_w <- rbind(shoothing_pursuit_women, shoothing_mass_start_women)
# The hits and the misses of the 20-th target for individuals and then for pursuits and mass starts
y_ind_m <- length(under_pressure_men$last_shot[under_pressure_men$last_shot=='Hit'])
y_ind_w <- length(under_pressure_women$last_shot[under_pressure_women$last_shot=='Hit'])
n_ind_m <- nrow(under_pressure_men)
n_ind_w <- nrow(under_pressure_women)

y_oth_m <- length(df_pressure_m$last_shot[df_pressure_m$last_shot=='Hit'])
y_oth_w <- length(df_pressure_w$last_shot[df_pressure_w$last_shot=='Hit'])
n_oth_m <- nrow(df_pressure_m)
n_oth_w <- nrow(df_pressure_w)
# The posterior parameters for individuals
alpha_post_ind_m <- alpha_prior_men + y_ind_m
alpha_post_ind_w <- alpha_prior_women + y_ind_m
beta_post_ind_m <- alpha_prior_men + n_ind_m - y_ind_m
beta_post_ind_w <- alpha_prior_women + n_ind_w - y_ind_w

# Probability of hitting the 20-th shot in residuals and mass starts
threshold_m <- y_oth_m/n_oth_m
threshold_w <- y_oth_w/n_oth_w

The Null hypothesis H0 is that in individuals, the very last shot has a probability of being hit, that is greater or equal the in every other race (when hitting the first 19)

# Hypothesis testing for men
x_axis <- seq(0, 1, 0.001)
plot <- ggplot() +
        geom_line(aes(x=x_axis, y=dbeta(x = x_axis, shape1 = alpha_post_ind_m,
                                        shape2 = beta_post_ind_m))) +
        geom_vline(aes(xintercept=threshold_m)) +
        theme_bw()
plot

# Integrating the null hypothesis for men
int_func_m <- function(x){
  return(dbeta(x = x, shape1 = alpha_post_ind_m,
                                        shape2 = beta_post_ind_m))
}
integrate(f = int_func_m, lower = threshold_m, upper=1)$value
## [1] 0.006973497
# Integrating the null hypothesis for women
x_axis <- seq(0, 1, 0.001)
plot <- ggplot() +
        geom_line(aes(x=x_axis, y=dbeta(x = x_axis, shape1 = alpha_post_ind_w,
                                        shape2 = beta_post_ind_w))) +
        geom_vline(aes(xintercept=threshold_w)) +
        theme_bw()
plot

int_func_w <- function(x){
  return(dbeta(x = x, shape1 = alpha_post_ind_w,
                                        shape2 = beta_post_ind_w))
}
integrate(f = int_func_w, lower = threshold_w, upper=1)$value
## [1] 0.001786718